Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 4 down vote accepted

The UIViewController is the controller part in the MVC design pattern.

M(odel)<------->C(ontroller)<------->V(iew)

The Controllers task is to handle navigation between different views, hadnel key presses, screen touches etc.

share|improve this answer

A view is merely an object, kind of like a piece of paper, that other objects are put onto.

A View Controller is an object that controls views, pushing and popping them forwards and backwards in a navigation stack.

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.