在静态行UITableView中创建自定义单元格

时间:2012-03-06 06:42:30

标签: ios xcode uitableview

我尝试使用设置创建应用。对于显示的设置,我选择表视图。

所以我需要创建这个表。 Apple官方指南 - https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html但我无法理解如何设置视图到单元格。我应该如何设置章节的名称?

是否有关于创建此类表的教程?我找不到任何东西

UPD我想创建这样的表:

enter image description here

1 个答案:

答案 0 :(得分:1)

您最好的选择是使用带有UITableViewController子类的UIStoryboard。

放入UITableView并在Attributes Inspector中选择Content>静态细胞。

enter image description here

然后,您可以使用IBOutlets和操作来安排您的单元格和链接控件。