UITableViewDelegate.FooterViewDisplayingEnded 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 when a section footer view is removed from the table (for instance, due to scrolling).
[Foundation.Export("tableView:didEndDisplayingFooterView:forSection:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void FooterViewDisplayingEnded (UIKit.UITableView tableView, UIKit.UIView footerView, nint section);
abstract member FooterViewDisplayingEnded : UIKit.UITableView * UIKit.UIView * nint -> unit
override this.FooterViewDisplayingEnded : UIKit.UITableView * UIKit.UIView * nint -> unit
Parameters
- tableView
- UITableView
Table to which the footer view belongs.
- section
- System.System.IntPtr System.nativeint
The index of the section to which the footerView
belonged.
- Attributes
Remarks
Application developers should use this method rather than trying to monitor the footerView
's visibility directly.