Creating custom cells in a static UITableView row

I tried to create an application with settings. For the settings shown, I choose the type of table.

Therefore, I need to create this table. There is an official Apple guide - https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html But I cannot figure out how to set the view to cells. And how do I set the name of the partitions?

Is there a tutorial on creating such tables? I can not find anything

UPD I want to create a table as follows:

enter image description here

+5
source share
1 answer

Your best option is to use a UIStoryboard with a subclass of UITableViewController.

UITableView Content > Static Cells.

enter image description here

IBOutlets .

+1

All Articles