Well, i have to feed my application in this way:
TabBarController
|
|--- 1)TableView from xml using coreData --- 1.1)Detail View aftehr 2 choices
|
|--- 2)TableView (same xml) using coreData (but using other tags) --- 2.1)DetailView after 2 choice
|
|--- 3)MapView with google maps etcetc.
for the 3) i have no problem, it works.
My question is related to the point 1) and 2).
I've followed this guide: http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/ which explain how to create a drill down table from a xml file.
my xml has a similar structure with the xml in the file, and i need a table view who works in the same way.
But now in xcode 4.2 i want to use the storyboard but i've got some problem to adapt the code to the storyboard because the window is loaded in another way, and also i have some problem to use the appdelegate, because I have some error during the run of the application.
My question are: 1) How can i manage the classes and the code from the example to obtain a such complex app scheme? 2)Do I have to declare separates delegates for each parser?
Any suggestion?