//添加消息通知 小红点iOS自带 NSArray *tabBarItems = self.navigationController.tabBarController.tabBar.items; UITabBarItem *personCenterTabBarItem = [tabBarItems ...
分类:
移动开发 时间:
2016-07-25 01:45:56
阅读次数:
483
for (UIViewController *controller in self.navigationController.viewControllers) { if ([controller isKindOfClass:[PlaceOrderVC class]]) { [self.navigat ...
分类:
其他好文 时间:
2016-07-23 13:24:28
阅读次数:
101
如何将 NavigationBar 的半透明效果关闭?只需三行代码就可以:self.navigationController.navigationBar.barTintColor = [UIColor whiteColor]; self.navigationController.navigation ...
分类:
其他好文 时间:
2016-07-15 23:42:36
阅读次数:
189
首先,层级关系: leftBarButtonItem、rightBarButtonItem、title都是加在UINavigationItem上的,UINavigationItem再加在NavigationBar上,NavigationBar对应唯一的NavigationController. 1. ...
分类:
移动开发 时间:
2016-07-12 19:20:25
阅读次数:
150
第一:实现navigationController代理 - (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)vie ...
分类:
其他好文 时间:
2016-07-05 11:53:18
阅读次数:
985
self.navigationController.tabBarController.tabBar.hidden=self.navigationController.childViewControllers.count>1?YES:NO; ...
分类:
其他好文 时间:
2016-06-30 14:10:46
阅读次数:
424
###1.问题描述:如A是navigationController的rootViewController,在这个页面navigationBar是显示的(隐藏属性为NO),它push圧栈过来B视图控制器,B页面navigationBar是不显示的(隐藏属性为YES),有一定几率会出现,B要右滑pop自 ...
分类:
其他好文 时间:
2016-06-29 20:27:25
阅读次数:
140
下面代码可以让导航栏变透明 [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsCompact];或者可以照一张透明的图片来填充也可以 隐藏导航栏下面的 ...
分类:
其他好文 时间:
2016-06-24 20:29:18
阅读次数:
134
导航栏 背景和title颜色 背景色 self.navigationController.navigationBar.barTintColor = [UIColor colorWithHex:@"#FFFEFE"];//[UIColor whiteColor]; title颜色(想显示啥样就啥样) ...
分类:
其他好文 时间:
2016-06-24 20:21:55
阅读次数:
217