作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何以编程方式禁用单个 UIViewController 中的 SWRevealViewController 滑动,同时允许它在所有其他 UIViewController 中工作?
我想在我的登录 View Controller 中禁用 SWRevealViewController,这样用户就无法使用菜单绕过它。
目前,用户可以通过滑动来显示菜单,然后选择一个项目转到另一个 View Controller 。我想禁用它。
最佳答案
您只想禁用特定 View 的平移手势。
像这样:
SWRevealViewController *reveal = self.revealViewController;
reveal.panGestureRecognizer.enabled = NO;
关于ios - 如何在一个 UIViewController 中禁用 SWRevealViewController 滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24922299/
我是一名优秀的程序员,十分优秀!