Im starting with iPhone programming and objective c, i got some books and some tutorials to start with but i got one doubt and i cant find the answer for it.
I love mvc, so i have the view, the controller that interact with view and the model.
But, do i have a main controller that interact with other controller?
for example, i have personaController, personView and person class as part of model.
I have other mode class like familly, with a famillyView and do i need famillyController class ? should i put all in one main controller class?
if i should have more than one controller (one for each model class), how they interact? For example, i show famillyview, and want to show data from one person, so need personController right? should i got to one main controller and from that one to personController?
a pic to show my point of view. enter link description here
I hope its get clear my doubt. If someone know some rly good book or tutorial i appreciate it. Thx in advance!
i used this example
to interact with controllers.