码迷,mamicode.com
首页 > 其他好文 > 详细

控制器的左侧滑返回手势

时间:2017-12-15 15:41:29      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:决定   animate   navig   span   app   delegate   pop   bool   div   

开启此功能-----

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    
    // 在此决定是否开启左侧侧滑返回功能
    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
        self.navigationController.interactivePopGestureRecognizer.delegate = nil;
        self.navigationController.interactivePopGestureRecognizer.enabled = self.navigationController.viewControllers.count - 1;
    }
}

关闭此功能-----

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    
    // 在此决定是否开启左侧侧滑返回功能
    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
        self.navigationController.interactivePopGestureRecognizer.enabled = NO;
    }
}

 

控制器的左侧滑返回手势

标签:决定   animate   navig   span   app   delegate   pop   bool   div   

原文地址:http://www.cnblogs.com/cchHers/p/8043256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!