UITableViewSource.RowsInSection(UITableView, IntPtr) Method

Definition

Called by the table view to find out how many rows are to be rendered in the section specified by section.

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

Parameters

tableView
UITableView

Table view displaying the rows.

section
IntPtr

nativeint

Index of the section containing the rows.

Returns

IntPtr

nativeint

Number of rows in the section at index section.

Attributes

Remarks

Declared in [UITableViewDataSource]

Applies to