天天看點

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