UITableViewDataSource.TitleForFooter(UITableView, nint) Method

Definition

Called to populate the footer for the specified section.

[Foundation.Export("tableView:titleForFooterInSection:")]
public virtual string TitleForFooter (UIKit.UITableView tableView, nint section);
abstract member TitleForFooter : UIKit.UITableView * nint -> string
override this.TitleForFooter : UIKit.UITableView * nint -> string

Parameters

tableView
UITableView

Table view containing the section.

section
System.System.IntPtr System.nativeint

Index of the section displaying the footer.

Returns

Text to display in the section footer, or null if no title is required.

Attributes

Remarks

Table views use a fixed style for the section footer. To customize the appearance of the footer, return a custom view from GetViewForFooter(UITableView, nint) instead of implementing this method.

Applies to