天天看点

iOS开发笔记 6、View Controllers【MVC】

了解和熟悉这个对后续的开发很重要。

<b>■ View Controller Programming Guide for iOS</b>

For information about structuring and managing your application’s user interface

<a href="http://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/ViewControllerPGforiPhoneOS.pdf">http://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/ViewControllerPGforiPhoneOS.pdf</a>

<b>■ View Programming Guide for iOS.</b>

For information about presenting and animating your user interface

<a href="http://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/ViewPG_iPhoneOS.pdf">http://developer.apple.com/library/ios/documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/ViewPG_iPhoneOS.pdf</a>

<b>■ Model Object Implementation Guide</b>

discusses basic issues of subclass design and implementation,

<a href="http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ModelObjects/ModelObjects.pdf">http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ModelObjects/ModelObjects.pdf</a>

views are usually connected to view controllers, which manage events and otherwise take the controller role in the MVC model.

<b> </b>

iOS开发笔记 6、View Controllers【MVC】
iOS开发笔记 6、View Controllers【MVC】

UIViewController类

is a direct descendent of NSObject. That means it doesn’t get any of the functionality of UIResponder or UIView, which you find in most other UIKit objects. It’s also the parent object of all the other view controllers we’ll discuss. Practically, this means that the lessons learned here also apply to all the other controllers.

”iPhone and iPad in Action“图书中的例子是很好的参考,熟悉了这个,对于整个的程序流程就很了解了

<b>视图例子</b>

viewex

tableex

<b>Event and action</b><b>例子</b>

eventreporter

Guessture

Rgb

<b>高级视图例子:</b>

flipex

navex

SplitViewx

tabex