I am a newbie, and I am wondering what a ViewController is. I’ve tried to look at the description, but I find it too complicated. I’m working on Xcode 3 and am trying to link two pages together.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since you tagged this question with xcode3.2 i’ll assume you’re asking about UIViewController.
It’s one of the UIKit Framework classes.
One of its most important properties is its
view(which is an instance of UIView) that usually holds one or more subviews.What differentiates it from simple UIView are its methods for memory management, handling appearance, implementation in UINavigationController hierarchy…
The dull information on
UIViewControllercan be found here: UIViewController Class ReferenceYou’re definetly want to take a look at View Controller Programming Guide for iOS and View Controller Catalog for iOS.