I have to create a list of list using split view controller in IPad, i.e, when I select a row in master view a new table opens in in detail view where i can add list items, I have create d the master list but not able to get the logic to create different lists in detail view?
Share
Its quite easy to understand:
Create a
UIViewControllerthat will accept some kind of input when created. So when you touch one cell in the master view, you just need to pass some value(s) and then you build the newUIViewController.You can also check this tutorial, if you have doubts.