0

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.

  • You should consider upgrading to a newer version of Xcode, you are drastically limiting the iOS versions you can develop for considering the newest version is Xcode 4.3.2 for iOS 5.1. – Mick MacCallum May 04 '12 at 01:05

1 Answers1

0

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.

Rok Jarc
  • 18,765
  • 9
  • 69
  • 124