My problem is the following:
I am making an iPhone app that is primarily based on table view controllers. I need to be able to create data for the table view during runtime. I also need to create deeper levels during runtime. ie. I need to be able to click on the row and it should take me to a new table view which is empty. Additionally i need to ideally be able to keep making data and going deeper and deeper infinitely. The data created is stored in core data. I already have found a way to link which data is shown in each table view.
My question is this: Is it ok for each new table view to be created in a new uitableviewcontroller? that is how I have done it.
For example. If I click on "Varun" on the tableviewcontroller row. It will create a new tableviewcontroller during runtime and show me an empty table view. if i add data there and go back to varun and then click on it again, the data should be there.
So should I dynamically create tableviewcontrollers for each new tableview?
Thanks!
I'm extremely sorry if I wasn't clear. It is a very hard concepts to explain!
Thanks again!