标签:
- (void)viewDidAppear:(BOOL)animated { if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) { self.navigationController.interactivePopGestureRecognizer.enabled = NO; //让rootView禁止滑动 } }
- (void)viewDidLoad { // 配置返回按钮 UIBarButtonItem * backItem = [self barButtonForImageNames:@[@"icon-返回", @"", @""] action:@selector(popBack)]; backItem.title = @""; if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) { self.navigationController.interactivePopGestureRecognizer.enabled = YES; self.navigationController.interactivePopGestureRecognizer.delegate = self; } self.navigationItem.leftBarButtonItem = backItem; }
标签:
原文地址:http://www.cnblogs.com/saurik/p/4974659.html