1. 程式人生 > >IOS系列—— UINavigationController隱藏後手勢返回不可用

IOS系列—— UINavigationController隱藏後手勢返回不可用

1、隱藏導航欄

1)、
self.navigationController.navigationBar.alpha = 0;
等同於
nav.navigationBar.hidden = YES;
這種方法的原理是 navBar的本質是一個view 可以直接設定隱藏和透明度,但是他的位置沒變 只是看不到了而已 而且用這行程式碼吧導航條隱藏掉   手勢返回是依然可用的  2)、
nav.navigationBarHiidden = YES;
或者
[self.navigationController setNavigationBarHidden:!self.navigationController.navigationBarHidden animated:YES];
這個是系統支援的nav的方法,但是這個方法的弊端是手勢不可返回 如果要繼續支援手勢的話,需要手動新增一下方法,並新增代理
self.navigationController.interactivePopGestureRecognizer.delegate = self;
    self.navigationController.interactivePopGestureRecognizer.enabled = YES;


2、導航欄中部分viewController隱藏導航欄

效果可參照支付寶首頁點選之後, 在需要隱藏的導航欄的viewController中新增
-(void)viewWillAppear:(BOOL)animated
{
    [super <span style="font-family: Arial, Helvetica, sans-serif;">viewWillAppear:animated</span>];
    [self.navigationController setNavigationBarHidden:YES animated:YES];
}

-(void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [self.navigationController setNavigationBarHidden:NO animated:YES];
}
為什麼要在will的方法新增而不是在did方法裡面去新增? 原因在於:如果隱藏的viewController是nav的最後一個,ok,是沒有問題的,但是如果隱藏了nav的VieController後面還有ViewController,那麼就出現了問題,具體的可以自己去測試

3.獲取已存在的導航條

在專案中 很多時候 會自定義導航條

[[[UIApplication sharedApplication].windows firstObject] rootViewController]


UIViewController *controller = (UIViewController *)[[[UIApplication sharedApplication] keyWindow] rootViewController];
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:view];
    nav.navigationBar.hidden = YES;

在導航條可手勢返回的前提下

控制某一個頁面不可手勢返回

待驗證

當從控制器A push到控制器B,我們返回控制器A,除了使用按鈕返回 

還可以使用ios7出來的向右滑動,返回控制器A

文件中是這樣定義的:

@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
@property(nullable, nonatomic, readonly) UIGestureRecognizer *interactivePopGestureRecognizer NS_AVAILABLE_IOS(7_0) __TVOS_PROHIBITED;

我們在控制器B中的viewDidLoad中
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        self.navigationController.interactivePopGestureRecognizer.enabled = YES;      // 手勢有效設定為YES  無效為NO
        self.navigationController.interactivePopGestureRecognizer.delegate = self;    // 手勢的代理設定為self 
}

但是當回到控制器A中時,再想push到控制器B,就會出現卡屏,不會動的現象,因為rootView也會有向右滑動返回的問題,要解決這個問題,我們只需在控制器A的viewDidAppear中設定,interactivePopGestureRecognizer為NO:
-(void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        self.navigationController.interactivePopGestureRecognizer.enabled = NO;
    }

}

這樣即可以保證再B中向右滑返回A動後再次pushB時不會卡在A介面。