UINavigation
系统默认从上一个ViewController跳转到下一个ViewController时,backItem 是 < + 上ViewController的Navigation title这样的,如
但项目可能会被要求所有的Vc界面的返回按钮为
这时我们可以改写系统的PushViewController方法,在页面被Push过去时,将BackItem换成我们自己定义的item。
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if (self.viewControllers.count > 0)
{
viewController.hidesBottomBarWhenPushed = YES;
// 设置下一页面的返回键
UIButton *but = [UIButton buttonWithType:UIButtonTypeCustom];
but.frame = CGRectMake(0, 0, 50, 20);
[but setImage:[UIImage imageNamed:@"nav_back_black.png"] forState:UIControlStateNormal];
[but setTitle:@"<返回" forState:UIControlStateNormal];
but.userInteractionEnabled = YES;
[but addTarget:self action:@selector(toBack) forControlEvents:UIControlEventTouchUpInside];
viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:but];
}
[super pushViewController:viewController animated:animated];
}
- (void)toBack
{
[self popViewControllerAnimated:YES];
}
在我们自己写的toBack方法里面调用系统的popViewControllerAnimated方法,这样就实现了所有的页面都是统一的返回风格。
UIBarButtonItem初始化方法中提供了
- (instancetype)initWithTitle:(nullable NSString *)title style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action;
我们用自己写好的selctor去替换到系统的rightBarButtonItem,那么就可以实现将我们自己想要的东西添加到导航栏上
self.navigationItem.rightBarButtonItem = item; ```
在toNext方法中实现我们自己的操作
- (void)toNext
{
// 自己的实现
};
如下图,点击“完成”后就会pop回上一页
![customItem.png](http://upload-images.jianshu.io/upload_images/3141335-660bb839711b436f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
同理可以修改leftBarButtonItem 和 隐藏返回键。
https://github.com/hardy88/HTStudy/tree/master/iOS学习/HTHXBB