美文网首页
添加webview侧滑失效

添加webview侧滑失效

作者: bknlm | 来源:发表于2016-10-17 14:40 被阅读0次

iOS在UIViewController添加webview后侧滑失效

可以添加如下方法解决

- (void)viewDidAppear:(BOOL)animated {

[super viewDidAppear:animated];

self.navigationController.interactivePopGestureRecognizer.delegate = self;

}

如果有警告是没有遵循代理 UIGestureRecognizerDelegate

相关文章

网友评论

      本文标题:添加webview侧滑失效

      本文链接:https://www.haomeiwen.com/subject/dnntsttx.html