iOS Programming6th第14章-UINavigat
UINavigationController
在第5章,你学会了如何使用UITabBarController,知道了它如何允许用户访问不同的屏幕。tab bar controller适合于各自独立显示屏幕的内容,但是如果屏幕之间要提供相关的信息要怎么办?
例如系统设置应用有很多信息相关的屏幕:一系列的设置(如声音),每个设置都有细节设置页和每个细节的选择页(图14.1)。这种类型的界面被称为 drill-down
多级显示界面。
在本章中,你将会使用一个UINavigationController 来添加一个多级显示界面到Homepwner
中,这将允许用户看到并且编辑Item
的细节,这些细节会通过你在第13章中创建的DetailViewController
来展示(图14.2)。
UINavigationController
一个 UINavigationController 维护着一个存储展示相关信息 view controller 数组的栈,当一个UIViewController在栈顶的时候,这个view就是可见的。
当你初始化一个UINavigationController 的实例,你也同时给了它一个UIViewController。这个UIViewController被添加到导航controller的viewController数组并且成为导航controller的root view controller 。这个root view controller 总是在栈底部。(注意虽然这里称这个view controller为导航controller的 root view controller,但UINavigationController中并没有属性 rootViewController。)
在程序运行时更多的view controller可以被添加到UINavigationController 的栈中。这些view controller 被添加到viewController数组的末尾也就是这个栈的顶部。UINavigationController 的topViewController
属性总是指向在这个栈的顶部的view controller。
当一个view controller被压入栈中,它的界面从右边划过去。当一个栈弹出时(最后一个item被移除),顶部view controller从栈中被移除并且他的界面划向右边,同时暴露出栈中的下一个view controller,此时新的view controller成为新的top view controller。图14.3展示了一个navigation controller
和它的俩个view controller,topViewController的view也就时用户看到的界面。
UINavigtionController是UIViewController的子类,所以它也有自己的view
,它的view
总是有俩个子view:一个UINavigationBar
和一个topViewController中的view
本章中,你将添加一个UINavigationController到Homepwnery应用中,并且让ItemsViewController作为UINavigationController的rootViewController
。当用户选择一个Item时,DetailViewController被压入UINavigationController的栈中,这个view controller 允许用户看到并且修改从ItemsViewController表单视图中选择的Item。更新后的Homepwner对象关系图如图14.5。
如你所见,这个应用正在变大。幸运的是,view controller 和 UINavigationController知道怎么处理这种复杂的对象关系。在编写iOS应用时把每一个UIViewController看作他自己的小世界是很重要的。Cocoa Touch 中以及实现的原料回处理其他繁琐的工作。
从给Homepwner一个navigation controller开始, 重新打开 Homepwner项目,使用UINavigationController唯一的要求就是你给他一个root view controller 并且把他的view 添加到window中。
打开 Main.storyboard
选择 Items View Controller
。然后,从Editor
菜单中选择Embed In -> Navigation Controller
。这可以设置ItemViewController UINavigationController的根view controller。他同时也会更新storyboard,把Navigation Controller作为initial view controller
。
你的Detail View Controller
界面现在在navigation controller中可能有放错地方的view。如果有,选择stack view然后在Auto Layout constraint
菜单中点击 Update Frames
按钮。
作者使用的xcode 8.2,我用的xcode10.2没看到这个
Build 运行app。。。这个应用crash掉了。发生了什么?你之前在AppDelegate
中建立了一个绑定关系,ItemsViewController
将作为window的rootViewController:
let itemsController = window!.rootViewController as! ItemsViewController
你现在因为把ItemsViewController embed 在 UINavigationController中,broke了这个关系,现在你需要更新这个关系。
打开 AppDelegate.swift
更新application(didFinishLaunchingWithOptions _来反应新的view Controller级别关系。
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]?) -> Bool {
// Override point for customization after application launch.
let itemStore = ItemStore()
// let itemsController = window!.rootViewController as! ItemsViewController
let navigationController = window!.rootViewController as! UINavigationController
let itemsController = navigationController.topViewController as! ItemsViewController
itemsController.itemStore = itemStore
return true
}
再次build run这个应用。Homepwnere成功运行了,并且有一个完全空的UINavigationBAr在界面的顶部(如图14.6)
image-20190707235454480.png注意屏幕如何调节去fit ItemsViewController的view和新的navigation bar。UINavigationController 帮你做了这些工作:虽然ItemViewController的view实际上从 navigation bar的下面露出,UINavigationViewController在顶端添加了空白结果所有的对象都合适的显示了。这是因为这个view controller的top layout guide 被调整了,同时调整了所有constrain到top layout guide的view--就像stack view。
好难翻啊,太费时间了,待续。。。。