原文:http://blog.csdn.net/luoyeffcs/article/details/16106707目录1.关系分析2.关系综述3.概念点4.疑问1.关系分析UIBarItem-> UIBarButtonItem -> UINavigationItem1.1UIBarItem:UIB...
分类:
其他好文 时间:
2015-07-25 13:34:16
阅读次数:
161
导航条最近需要设置成透明的形式,最开始想通过颜色clearColor设置,设置透明度,结果发现UINavigationItem无法显示显示,后来通过setBackgroundImage设置成功,不过会多出一条线白线,需要通过setShadowImage设置背景图片,代码如下:-(void)viewW...
分类:
移动开发 时间:
2015-07-06 19:32:02
阅读次数:
129
一般导航控制器含有4个对象,UINavigationController、UINavigationBar、UIViewController、UINavigationItem。1:UINavigationController UINavigationController的父类是UIViewCon...
分类:
移动开发 时间:
2015-07-03 12:08:10
阅读次数:
191
为UINavigationController添加UINavigationItem,我们可以这样写:1.添加返回导航按钮backBarButtonItem1.用系统自带的返回按钮UIBarButtonItem*leftBarButtonItem = [[UIBarButtonItemalloc]in...
分类:
其他好文 时间:
2015-06-15 20:23:17
阅读次数:
105
一、UINavigationItem 1> 获得方式 self.navigationItem // self是指控制器 2> 作用 可以用来设置当前控制器顶部导航栏的内容 // 设置导航栏中间的内容 self.navigationItem.title self.navigationItem.titleVie...
分类:
其他好文 时间:
2015-05-14 18:56:15
阅读次数:
209
看着标题是不是乱的一塌糊涂。。。。。。。
在开发中,你很可能就理不清这些关系,刚好闲的蛋疼,来整理一下吧。
一、UINavigationBar
UINavigationBar 是一个控件, 表示UINavigationController(导航控制器)顶部那个玩意儿,UINavigationBar上面显示什么内容,完全由UINavigationItemshu...
分类:
其他好文 时间:
2015-03-15 19:53:31
阅读次数:
115
UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
//创建一个导航栏集合
UINavigationItem *navItem = [[UINavigationItem alloc] initWithTitle:nil];
...
分类:
移动开发 时间:
2015-01-29 12:48:19
阅读次数:
150
//创建一个导航栏 UINavigationBar *navigationBar=[[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; //创建一个导航栏集合 UINavigationItem ...
分类:
移动开发 时间:
2014-12-24 13:16:45
阅读次数:
191
摘要
本章主要使用presentViewController和dismissViewControllerAnimated实现自定义多视图的切换,例子里面模拟导航视图控制器模式,不过跳转的时候有点区别。
运行结果
过程概要
1.新建工程后新增一个基于UIViewController的类,用作多视图的第二视图;
2.在主视图里面创建一个UINavigat...
分类:
其他好文 时间:
2014-12-09 19:46:32
阅读次数:
232
varitem:UINavigationItem=UINavigationItem();varviewTitle=UIView();viewTitle.backgroundColor=UIColor.redColor();viewTitle.frame=CGRectMake(0,0,20,30)item.titleView=viewTitle;varbutton:UIBarButtonItem=UIBarButtonItem(title:"Left_1",style:UIBarButtonItemStyle...
分类:
其他好文 时间:
2014-11-24 22:46:54
阅读次数:
320