Share via


UITableViewDelegate_Extensions.FooterViewDisplayingEnded Method

Definition

Called when a section footer view is removed from the table (for instance, due to scrolling).

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static void FooterViewDisplayingEnded(this UIKit.IUITableViewDelegate This, UIKit.UITableView tableView, UIKit.UIView footerView, IntPtr section);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FooterViewDisplayingEnded : UIKit.IUITableViewDelegate * UIKit.UITableView * UIKit.UIView * nativeint -> unit

Parameters

tableView
UITableView

Table to which the footer view belongs.

footerView
UIView

The UIView being removed.

section
IntPtr

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