We want to build table like in native settings application. There should be sections of static cells and one section of dynamic cells.
Is there ways to do it just with storyboards without .xib files?
|
We want to build table like in native settings application. There should be sections of static cells and one section of dynamic cells. Is there ways to do it just with storyboards without .xib files? |
||||
|
|
|
Yes, you can do it nicely with a UITableViewController subclass and some static cells in the table view. More or less all you do is drop some cells into the table view and wire them up to the outlets in your controller. Here is a good guide. |
|||
|