iOS -- 全局导航栏返回键

Posted 神来芒果

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS -- 全局导航栏返回键相关的知识,希望对你有一定的参考价值。

   [UINavigationBar appearance].backIndicatorTransitionMaskImage = [UIImage imageNamed:@"backArrowMask.png"];

    [UINavigationBar appearance].backIndicatorImage = [UIImage imageNamed:@"icon_arrowback_n”];

 

icon_arrowback_n 大小为@2x = 42* 42

 

 

自定义返回按钮会造成返回手势不能使用,解决方法
1
2
3
4
///处理自定义返回按钮后不能侧滑
@interface RootNavigationController : UINavigationController
 
@end

  

@interface RootNavigationController : UINavigationController @end @implementation RootNavigationController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view.  self.interactivePopGestureRecognizer.delegate = self; } - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer { if (self.childViewControllers.count == 1) { return NO; } return YES; }

以上是关于iOS -- 全局导航栏返回键的主要内容,如果未能解决你的问题,请参考以下文章

ios怎么改变全局的导航条返回按钮

底部导航图标不变

Google 相册应用底部导航栏行为

设置二级导航栏的返回按钮

使用底部导航栏防止片段刷新

微信小程序自定义导航栏(wx_custom_navigation_bar) 自定义返回键首页键,动态设置标题,响应式组件