码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UINavgationController、 UINavigationBar、 UINavigationItem关系分析

时间:2015-07-03 12:08:10      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

  一般导航控制器含有4个对象,UINavigationController、UINavigationBar、UIViewController、UINavigationItem。

1:UINavigationController

  UINavigationController的父类是UIViewController(UIViewController,是所有控制器的基类),关系如下图所示:

                             技术分享

 

  UINavigationController是一个视图容器,以栈的形式管理者多个内容视图(UIViewController)的换入(压入)和换出(弹出),自身提供视图切换的动

  画效果。

2:UINavigationBar  

  UINavigationBar 的父类是UIView

     NavigaitonBar就是导航栏,位于屏幕的上方,管理整个NavigationControllernavigationItem,即类似navigationcontroller一样提供了一个栈来管

     理item

3:UINavigationItem

  UINavigationItem的父类是NSObject

     它包含了当前页面导航栏上需要显示的全部信息:title,prompt,titleView,leftBarButtonItem,,rightBarButtonItem,backBarButonItem。

  注意:UINavigationController中会有很多个UIViewController,每个UIViewController都会对应一个自己的UINavigationItem,用来展现

  UIViewController之间的不同之处。所以我们设置每个页面标题的时候,就必须用self.navigationItem.title这个属性。

 

 

 

 

 

 

 

iOS UINavgationController、 UINavigationBar、 UINavigationItem关系分析

标签:

原文地址:http://www.cnblogs.com/FightingLuoYin/p/4617992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!