UITableViewSource.GetViewForHeader(UITableView, nint) 方法

定义

返回一个视图对象,该对象显示在给定节的开头。

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

参数

tableView
UITableView

包含 节的表视图。

section
System.System.IntPtr System.nativeint

将在其中添加标头的节索引。

返回

要显示在给定 section的开头的视图。

属性

注解

UILabel可以是 ,UIImageView也可以是自定义视图。 此方法也需要 GetHeightForHeader(UITableView, nint) 实现。

在 [UITableViewDelegate] 中声明

适用于