UIView.WillRemoveSubview(UIView) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called prior to the removal of a subview.
[Foundation.Export("willRemoveSubview:")]
public virtual void WillRemoveSubview (UIKit.UIView uiview);
abstract member WillRemoveSubview : UIKit.UIView -> unit
override this.WillRemoveSubview : UIKit.UIView -> unit
Parameters
- uiview
- UIView
The subview that will be removed.
- Attributes
Remarks
This method is called by the runtime when a UIView is removed from the Subviews array.
By default, this method does nothing. Application developers can override the method in order to perform additional processing.