[self.navigationController.navigationBarsetBarTintColor:[UIColorpurpleColor]];或者如下,图片高度应该为64像素[self.navigationController.navigationBarsetBackgroundImage:[UIImagep_w_picpathNamed:@"navi_bg"]forBarMetrics:UIBarMetricsDefault];自定义UINavigationC..
分类:
其他好文 时间:
2016-10-21 02:02:42
阅读次数:
203
导航视图 1、创建导航视图根视图: 2、跳转到新视图控制器: 3、返回之前的视图控制器: 备注:这里各个压入堆栈中的ViewController 都采用self.navigationController获取导航控制器。可参考下文: http://kingbinchow.iteye.com/blog/ ...
分类:
其他好文 时间:
2016-10-16 16:50:24
阅读次数:
208
工程项目 -> General->launch Screen file这个如果没有设置,则app的可见范围为3.5inch(APP的可见范围是由启动界面决定的) PUSH方法是在navigationController容器中进行切换,present是navigationController容器上覆盖 ...
分类:
其他好文 时间:
2016-10-15 14:08:32
阅读次数:
125
方法一: 自定义视图,定义一个lable,相关属性在lable里设置 核心方法: self.navigationItem.titleView = titleLabel; 方法二:用系统方法直接设置 [self.navigationController.navigationBar setTitleTe ...
分类:
移动开发 时间:
2016-10-08 16:34:10
阅读次数:
212
方案一在使用了navigationController后,当界面进行跳转往返后,时而会出现tableView或collectionView上移的情况,通常会自动上移64个像素,那么这种情况,我们可以关闭tableView的自动适配布局。 self.automaticallyAdjustsScroll ...
分类:
移动开发 时间:
2016-09-29 20:51:16
阅读次数:
213
- (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; navBarHairlineImageView.hidden = NO; [self.navigationController.navigat ...
分类:
移动开发 时间:
2016-09-26 18:03:22
阅读次数:
258
[self.navigationController.navigationBar setTranslucent:NO]; ...
分类:
移动开发 时间:
2016-09-26 11:09:11
阅读次数:
408
多视图应用程序中,我们常常使用到自定义UINavigationBar来完成导航条的设置。 1.获取导航条 UINavigationBar *navBar = self.navigationController.navigationBar; UINavigationBar *navBar = self ...
分类:
其他好文 时间:
2016-09-19 16:00:38
阅读次数:
159
【storyboard创建tableView步骤】 1.设置根视图 2.选中视图,设置导航栏editor/embed in/navigationcontroller 3.cell设置Identifier标识 4.创建tableviewcontroller类,跟tableviewcontroller控 ...
分类:
其他好文 时间:
2016-09-19 15:59:40
阅读次数:
241
需求: appdelegate里 rootviewcontroller 是tabbarcontroller,tabbarcontroller里有4个navigationcontroller,改变每个navigationbar的高度 问题参考SO里的方法:,在每个controller里的viewwil ...
分类:
移动开发 时间:
2016-09-14 12:29:21
阅读次数:
400