Share via


UITableViewController.GetHeightForFooter(UITableView, IntPtr) Method

Definition

Called to determine the height of the footer for the section specified by section.

[Foundation.Export("tableView:heightForFooterInSection:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual System.Runtime.InteropServices.NFloat GetHeightForFooter(UIKit.UITableView tableView, IntPtr section);
[<Foundation.Export("tableView:heightForFooterInSection:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member GetHeightForFooter : UIKit.UITableView * nativeint -> System.Runtime.InteropServices.NFloat
override this.GetHeightForFooter : UIKit.UITableView * nativeint -> System.Runtime.InteropServices.NFloat

Parameters

tableView
UITableView

Table view.

section
IntPtr

nativeint

Index of the section requiring a footer display.

Returns

The height of the footer (in points) as a float.

Implements

Attributes

Remarks

This method allows section footers to have different heights. This method is not called if the table is Plain style.

Applies to