self.navigationController.navigationBar.translucent = YES;// 设置bar透明[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"...
分类:
其他好文 时间:
2015-01-12 16:04:28
阅读次数:
102
//*************导航状态栏(UINavigationController)***************
1.在导航控制器中,所有的子视图控制器共用一个导航状态栏
UINavigationBar *navBar = self.navigationController.navigationBar
2.可设置导航栏的显示风格
navBar.barStyle = U...
分类:
其他好文 时间:
2014-12-24 21:37:10
阅读次数:
280
//创建一个导航栏 UINavigationBar *navigationBar=[[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; //创建一个导航栏集合 UINavigationItem ...
分类:
移动开发 时间:
2014-12-24 13:16:45
阅读次数:
191
在delegate中修改 //修改整体的navigationBar的背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:46/255.0 green:186/255.0 blue:157/255...
分类:
移动开发 时间:
2014-12-15 18:38:34
阅读次数:
751
主要内容:UINavigationController、定制UINavigationBar、界面间通信(属性传值、代理传值)
一、UINavigationController...
分类:
其他好文 时间:
2014-12-11 10:32:57
阅读次数:
201
摘要
本章主要使用presentViewController和dismissViewControllerAnimated实现自定义多视图的切换,例子里面模拟导航视图控制器模式,不过跳转的时候有点区别。
运行结果
过程概要
1.新建工程后新增一个基于UIViewController的类,用作多视图的第二视图;
2.在主视图里面创建一个UINavigat...
分类:
其他好文 时间:
2014-12-09 19:46:32
阅读次数:
232
1.设置navigationbar背景颜色[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];2.设置按钮颜色self.navigationController.navigationBar.tintColor = [...
分类:
其他好文 时间:
2014-12-06 00:03:51
阅读次数:
199
iOS 5 以后 UINavigationController 可以 改变UINavigationBar导航条标题颜色和字体[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionary...
分类:
其他好文 时间:
2014-11-28 17:56:45
阅读次数:
172
#import "UINavigationBar+CustomImage.h"@implementation UINavigationBar (CustomImage)-(UIImage *)drawImage:(NSString *)imageName{ UIImage *image = [U.....
分类:
其他好文 时间:
2014-11-26 13:31:37
阅读次数:
271
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