UITableViewDataSource.SectionIndexTitles(UITableView) 方法

定义

返回要作为表视图上的索引显示的标题数组。

[Foundation.Export("sectionIndexTitlesForTableView:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 2, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual string[] SectionIndexTitles (UIKit.UITableView tableView);
abstract member SectionIndexTitles : UIKit.UITableView -> string[]
override this.SectionIndexTitles : UIKit.UITableView -> string[]

参数

tableView
UITableView

显示索引的表视图。

返回

String[]

标题数组,例如,要显示按字母顺序排列的列表,则返回从“A”到“Z”的字符串数组。

属性

注解

索引列表显示在表视图的右边缘。

只有具有 样式的 Plain 表才应实现此属性。

适用于