I am trying to create an application that will have a similar interface with iOS settings, and I am a little lost how to proceed.
Basically, I plan to make the wizard represent the static view of the table. And each row in this static table view has its own detail view controller.
Currently, I have made my main static view of the table through the storyboard. How can I make each of the lines, when used, show my respective detail view controllers in the detail view? I would like to know how best to move in this situation.
I am browsing the network for tutorials, but I see only a dynamic view of the main table with only 1 detailed instructions from the detail view controller. And they used delegates to connect view controllers left and right. But for me, I donβt have a model object as I am using a static table view.
I know how to do this programmatically (connecting left and right views), but I plan to use storyboards for this, as I have several static table views that are detailed row views in my main table view. I do not know how to do this using storyboards.
aresz source share