I need a detailed explanation on the following: what do we have to use view controllers for? What is the use of it?
I have a class that looks like this:
class one {
I create navigation controller
uinavigationcont *nav=...
class two object created here like
two *secondobject....
by use of it I have push the new view class two//ok
}
class two{
...
}
Then here how can I use that second object in this class?
What is the class hierarchical start from the window?
Can anyone explain please?