iOS push跳转添加手势返回

2019-06-03  本文已影响0人  懿懿懿懿懿懿懿

push跳转界面以后在pop返回的时候想要用手势返回。

使用以下方式

@interface SetViewController ()<UIGestureRecognizerDelegate>

- (void)viewDidLoad {
    [super viewDidLoad];
    self.navigationController.interactivePopGestureRecognizer.delegate = self;  //启用侧滑手势
}
上一篇 下一篇

猜你喜欢

热点阅读