Question

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.

Was it helpful?

Solution

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 UIViewController can be found here: UIViewController Class Reference

You're definetly want to take a look at View Controller Programming Guide for iOS and View Controller Catalog for iOS.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top