Share via


IUITableViewDelegate.FooterViewDisplayingEnded Method

Definition

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

[Foundation.Export("tableView:didEndDisplayingFooterView:forSection:")]
[Foundation.OptionalMember]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void FooterViewDisplayingEnded(UIKit.UITableView tableView, UIKit.UIView footerView, IntPtr section);
[<Foundation.Export("tableView:didEndDisplayingFooterView:forSection:")>]
[<Foundation.OptionalMember>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member FooterViewDisplayingEnded : UIKit.UITableView * UIKit.UIView * nativeint -> unit
override this.FooterViewDisplayingEnded : 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