标签:style blog http color strong width
添加类似navigationController自带的返回按钮,效果如下:
一、UINavigationcontroller自带的navigationBar 是无法添加左箭头的返回按钮的
在网上搜索了一下 但是真的有方法可以添加成功,但是前提是该 navigationBar不是NavigationController自带的。
如果是自带的navigationBar就无法添加成功,会出现
- Terminating app due to uncaught exception ‘NSInternalInconsistencyException‘, reason: ‘Cannot call setItems:animated: directly on a UINavigationBar managed by a controller.‘
这样的错误,意思就是“ 苹果不允许 直接对受一个Controller控制的naviBar 进行 setItems操作”, 仔细一查,真的有这样的规定
"The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported."
意思很明确了: 这个naviBar是受controller管理的,不支持Pushing, popping or setting navigation items操作。
看到这儿,我也很无语了,所以只好自己切图了,切出左箭头的样式来添加leftBarButtonItem 了。
二、单独的UINavigationBar添加左箭头的返回按钮
但是还是贴出来,单独的一个NavigationBar怎么添加 左箭头的返回按钮代码,这段代码想必看了很多次了吧,哈哈,不厌其烦的在贴一遍好了
- UINavigationItem *navigationItem = [[UINavigationItem alloc] initWithTitle:@""];
- [self.naviBar pushNavigationItem:navigationItem animated:NO];
- self.naviBar.delegate = self;
-
- UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"右边"
- style:UIBarButtonItemStyleDone
- target:self
- action:@selector(clickRightButton)];
- [navigationItem setRightBarButtonItem:rightButton];
- [navigationItem setTitle:@"我的页面"];
- UINavigationItem *item = [self.naviBar.items objectAtIndex:0];
- [self.naviBar pushNavigationItem:item animated:YES];
- UINavigationItem *back = [[UINavigationItem alloc] initWithTitle:@"Back"];
- NSArray *items = [[NSArray alloc] initWithObjects:back,item,nil];
- [self.naviBar setItems:items animated:NO];
如何捕获左箭头返回按钮的事件呢? 你需要去实现 UINavigationBarDelegate 协议里面的方法。
- - (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item
- {
-
- NSLog(@"aaaaaaaaaaaaa");
- return FALSE;
- }
最后贴出运行的效果图
添加类似navigationController自带的返回按钮,布布扣,bubuko.com
添加类似navigationController自带的返回按钮
标签:style blog http color strong width
原文地址:http://www.cnblogs.com/ygm900/p/3830741.html