我想得到的效果:
当用户点击backBarButtonItem
的时候,在pop前,我想处理一些逻辑来判断是否pop。
并且我想要保留backBarButtonItem
的'<'。
为什么得不到这种效果
- 为
backBarButtonItem
绑定事件会被忽略,UINavigatonController
自动为其绑定事件,只做POP动作。There is nothing we can do. - 使用
leftBarButtonItem
可以绑定事件,但是'<'就不存在了,当然可以定制View来达到效果,但是如果需要兼容iOS6则需要更多的工作(iOS6的backBarButtonItem
试样与iOS7不同),而且谁也不会知道在iOS9中,会出现什么新设计。(在iOS9快释出的时候还适配iOS6?其实只是强行找个写这篇文字的理由 :])
我试过的方法:
- Add target on
backBarButtonItem
. Failed. - Set
leftBarButtonItem
with charactor '<'. (All kind of '<' I could find in Characters Viewer) 用一个字符'<'来显示backBarButtonItem
的'<'效果,比如'↺'和'√'。这样就不用自己绘制或贴图了。 - Set
leftItemsSupplementBackButton
toYES
. 该属性使backBarButtonItem
和leftBarButtonItem
同时显示,leftBarButtonItem
在backBarButtonItem
的右边,于是我就想让backBarButtonItem
只显示一个'<',让leftBarButtonItem
显示文字,并disablebackBarButtonItem
不就可以了?但是剧本不是我写的。set "" tobackBarButtonItem
and set "Back" toleftBarButtonItem
, but there is a gap between '<' and 'Back'.
最终解决方案:
- Subclass
UINavigatonController
, override- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item
- Category
UINavigatonController
, expose super's- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item
解释如下:
UINavigationBarDelegate
定义了一些方法来控制POP和PUSH行为:
navigationBar:shouldPushItem:
navigationBar:didPushItem:
navigationBar:shouldPopItem:
navigationBar:didPopItem:
这里我们利用了navigationBar:shouldPopItem:
,如果该方法返回NO,则不POP。
因此我们创建UINavigatonController
的子类,来定制navigationBar:shouldPopItem:
的逻辑。
这里有个小地方要注意,就是我们不需要设置delegate,UINavigatonController
会自动将包含的UINavigationBar
的delegate指向自己。
子类的navigationBar:shouldPopItem:
我们希望在处理完定制的逻辑后调用父类的该方法完成POP,但是父类UINavigatonController
并没有把navigationBar:shouldPopItem:
作为接口暴露出来,因此我们需要一点Category
的小技巧来为父类创建navigationBar:shouldPopItem:
的接口。
代码如下:
WFNavigationController.h文件
@protocol WFNavigationControllerDelegate <NSObject>
@optional
- (BOOL)controllerWillPopHandler;
@end
@interface WFNavigationController : UINavigationController
@end
WFNavigationController.m文件
@interface UINavigationController(UINavigationControllerNeedshouldPopItem)
- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item;
@end
@implementation UINavigationController(UINavigationControllerNeedshouldPopItem)
@end
// 以上几行就是使用Category使UINavigationController将其实现的navigationBar:shouldPopItem:暴露出来,
// 让我们定制的子类可以调用
@interface WFNavigationController() <UINavigationBarDelegate>
@end
@implementation WFNavigationController
- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item
{
UIViewController *vc = self.topViewController;
if ([vc respondsToSelector:@selector(controllerWillPopHandler)])
{
if ([vc performSelector:@selector(controllerWillPopHandler)])
{
return [super navigationBar:navigationBar shouldPopItem:item];
}
else
{
return NO;
}
}
else
{
return [super navigationBar:navigationBar shouldPopItem:item];
}
}
@end
navigation controller栈顶的vc,遵循WFNavigationControllerDelegate
协议,实现- (BOOL)controllerWillPopHandler
方法即可。
推荐使用block而不是delegate
我在这里使用了delegate而不是block,其实是在偷懒,block是更好的方式,可以让你的代码更易阅读。
因为相关逻辑都放在一起,而不是像使用委托这样到处散落。
在该场景下,还有个推荐使用block的更重要的原因:在NavigationController
的push和pop过程中,topViewController
可能不是你预期的那个VC。block可以方便的加载,卸载。
由于topViewController
的不稳定性,所以这篇文字介绍的方法不是最好的。以后有时间再寻找下别的方式。
考虑以下场景:
A -> B -> C
A创建并 push B,B创建并 push C。
B需要在pop前进行逻辑判断,所以B遵循协议。
这种场景下,有两个地方会触发B实现的委托:
- B点击
backBarButtonItem
返回A,这是我们期望的。 - C手动
[self.navigationController popViewControllerAnimated:YES];
比如点击rightBarButtonItem
返回B。这里也会触发!
也就是说backBarButtonItem
时获取到的topViewController
是pop前VC,而[self.navigationController popViewControllerAnimated:YES];
获取到的是pop后VC。这种两种路径的设计也蛮“有意思”。
visibleViewController
和viewControllers.lastObject
也一样。
这里我没有深入下去,而是在view life circle中加载,卸载popBlock。或者使用delegate外加一个Bool变量在view life circle中启用,禁用委托。
以上解决方案不是很理想,有时间我会再研究整理,看有没有更好的方法。
如果没看懂的话,请留言,我可以写个demo。
以下可以选择性适当忽略:
禁止pop后,< Back中的<会置灰,文字Back却不会(可能又是Apple Inc.的小Bug)。
解决方法很简单:在vc中调用以下两句代码,两句,嗯。
[self.navigationController setNavigationBarHidden:YES animated:YES];
[self.navigationController setNavigationBarHidden:NO animated:YES];
比如,用户点击backBarButtonItem
时,我提示用户是否继续离开,如果用户选择OK则POP离开,如果用户选择NO则留在本页并执行上面两句,使<Back中的<恢复正常颜色。
感谢大家阅读完这篇文字:]
网友评论
这样应该可以获得到当前VC
1.在navigationcontroller的初始化方法中将delegate指向自己self.delegate = self;
2.实现UINavigationControllerDelegate中的navigationController:didShowViewController:animated:方法,将这个方法中的ViewController作为CurrentViewController
3.在navigationBar:shouldPopItem:方法中使用CurrentViewController作为上面的topViewController进行回调
并且官方文档强调过 运行时分类中同名方法和原有类中的方法谁被调用是不确定的