一、 设置title 在需要显示该返回键的前一个Controller中设置: 1: navigationItem.backBarButtonItem = UIBarButtonItem(title: "注销", style: UIBarButtonItemStyle.Plain, target: n...
分类:
移动开发 时间:
2015-05-11 10:33:15
阅读次数:
149
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithImage:img style:UIBarButtonItemStylePlain target:self action:@selector(onBack:...
分类:
其他好文 时间:
2015-05-02 23:14:27
阅读次数:
194
//1.navigationBar 高度为44 //标题
self.title = @"";
//self.navigationItem.title = @"";
//self.navigationController.title = @"";注意: 如果不是UINavigationController自带的,而是UINavigationBar
UINavigationBar继承于UIVi...
分类:
其他好文 时间:
2015-04-30 22:01:18
阅读次数:
316
显示: [self.navigationController?setNavigationBarHidden:NO?animated:YES]; 隐藏: [self.navigationController?setNavigationBarHidden:YES?animated:YES]; 隐藏返回键 ?self.navigationItem.hidesBack...
分类:
其他好文 时间:
2015-04-24 14:28:54
阅读次数:
104
本来我是用创建UIButton赋值给self.navigationItem.leftBarButtonItem的方式设置返回按钮的,用了觉得挺正常,结果看了@蛙牛的文章《Java转iOS-第一个项目总结(2)》后,发现一个重大问题:手势返回功能没了,原因...
分类:
移动开发 时间:
2015-04-22 18:53:51
阅读次数:
391
1、不想让TableView显示无用的Cell分割线怎么办? ? 1 self.tableView.tableFooterView = [[UIView alloc] init]; 2、自定义了leftBarbuttonItem左滑返回手势失效了怎么办? ? 1 2 3 4 5 6 self.navigationItem.leftBarButtonItem = [[UIBarButtonItem ...
分类:
移动开发 时间:
2015-04-08 18:17:59
阅读次数:
209
1.有一个tabBarController的视图,设置tabBar下面item的标题和NavigationItem上的标题可以为:homeVC.navigationItem.title = @"首页";homeVC.tabBarItem.title = @"首页";上面2行可以是用: homeVC....
分类:
其他好文 时间:
2015-04-04 11:54:50
阅读次数:
89
OtherViewController *ovc=[[OtherViewController alloc]init]; ovc.navigationItem.title=[nameArr objectAtIndex:sender.tag-100]; [self.navigationControll...
分类:
其他好文 时间:
2015-03-20 21:47:35
阅读次数:
200
//为了隐藏默认的返回按钮 self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]?initWithCustomView:[UIView new]]; //开启手势操作 self.navigationController.interactivePopGestureRecognize...
分类:
移动开发 时间:
2015-03-10 17:35:59
阅读次数:
157
国外得一个链接:http://situee.blogspot.com/2014/10/ios-set-navigation-bar-back-button-title.html最近迷上了简洁风,在使用StoryBoard Push到下一个视图,会在下一个视图的左上角又一个箭头和文字,表示返回键盘,我...
分类:
其他好文 时间:
2015-03-10 00:06:55
阅读次数:
231