문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top