Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating custom cells in static row UITableView

I tried to create app with settings. For shown settings i choose table view.

So i need to create this table. There is Apple official guide - https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html But i cant understand how to set view to cells. And how should i set Sections's name?

Is there tutorial about creating such tables? I cant find anything

UPD i want to create table like this:

enter image description here

like image 477
Eugene Trapeznikov Avatar asked Nov 14 '22 09:11

Eugene Trapeznikov


1 Answers

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

Drop in a UITableView and in the Attributes Inspector select Content > Static Cells.

enter image description here

You can then arrange your cells and link controls with IBOutlets and actions.

like image 112
W Dyson Avatar answered Dec 21 '22 19:12

W Dyson