UITableViewDelegate.FooterViewDisplayingEnded Method

Definition

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.

footerView
UIView

The UIView being removed.

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.

Applies to