iOS Programming UINavigationController】的更多相关文章

iOS Programming UINavigationController the Settings application has multiple related screens of information: a list of settings (like Sounds), a detailed page for each setting, and a selection page for each detail. This type of interface is called a…
iOS Programming Autorotation, Popover Controllers, and Modal View Controllers  自动旋转,Popover 控制器,Modal view controller  1.  In this chapter, you are going to make four changes to Homepwner's behavior that will tailor the app's behavior to whatever dev…
iOS Programming UIStoryboard In this chapter, you will use a storyboard instead. Storyboards are a feature of iOS that allows you to instantiate and lay out all of your view controllers in one XIB-like file. Additionally, you can wire up view control…
iOS Programming State Restoration 状态存储 If iOS ever needs more memory and your application is in the background, Apple might kill it to return memory to the system. 如果iOS 需要更多的memory,你的应用在后台,apple 可能杀死它来得到更多的内存给系统. This should be transparent to your u…
iOS Programming UISplitViewController  The iPad, on the other hand, has plenty of screen space to present both views using a built-in class called UISplitViewController. iPad 有足够的屏幕空间来展现两个view用built-in 类称为UISplitViewController. UISplitViewController…
iOS Programming Web Services and UIWebView The work is divided into two parts. The first is connecting to and collecting data from a web service and using that data to create model objects. The second part is using the UIWebView class to display web…
 iOS Programming Camera  1 1 Displaying Images and UIImageView 1.1  put an instance of UIImageView on the screen. Then drag an instance of UIImageView onto the view and position it below the label. A UIImageView displays an image according to its con…
内部分享: Head First iOS Programming http://www.slideshare.net/tedzhaoxa/head-first-ios-programming-46064377…
iOS Programming Recipe 6: Creating a custom UIView using a Nib JANUARY 7, 2013 BY MIKETT 12 COMMENTS Creating a custom UIView using a Nib Assumptions You are familiar with creating UIView subclasses, and instantiating UIView’s both from a Nib file or…
iOS Programming Controlling Animations 动画 The word "animation" is derived from a Latin word that means "the act of bringing to life." Animations are what bring your applications to life, and when used appropriately, they can guide your…