我正在使用一个基本的 iPad Master Table 应用程序,它只使用纵向。
我希望在您向右滑动时阻止主视图 Controller 出现(仅通过按钮访问)。
这是 UISplitViewController
的新功能,在 iOS 5.1 中引入。
为了禁用此功能,他们还实现了一个名为 presentsWithGesture
的新属性来打开和关闭它。
Apple 强烈建议您保留它,因为人们会越来越期望它以这种方式工作,但如果您必须禁用它,则需要在代码的某处添加:
self.splitViewController.presentsWithGesture = NO;
或者,如果您手动创建 splitViewController,那么只需将 presentsWithGesture
设置为 NO。
关于ios - 主表应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9628107/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |