iOS 13为模态呈现的视图控制器引入了modalPresentationStyle .pageSheet(及其兄弟姐妹.formSheet)的新设计…
我们可以通过向下滑动所呈现的视图控制器来取消这些表(交互式取消)。尽管新的“删除”功能非常有用,但它可能并不总是可取的。
问题:我们如何关闭交互式解雇? -请记住,我们保持演示风格不变。
iOS 13为模态呈现的视图控制器引入了modalPresentationStyle .pageSheet(及其兄弟姐妹.formSheet)的新设计…
我们可以通过向下滑动所呈现的视图控制器来取消这些表(交互式取消)。尽管新的“删除”功能非常有用,但它可能并不总是可取的。
问题:我们如何关闭交互式解雇? -请记住,我们保持演示风格不变。
当前回答
苹果在这个链接上分享了一个关于它的示例代码
它使用isModalInPresentation作为许多用户的建议。
其他回答
如果你正在使用故事板来布局你的UI,我发现在使用导航控制器时禁用这种交互式撤销的最好方法是将导航控制器在属性检查器中的表示从自动更改为全屏。导航堆栈中的所有视图控制器都将是全屏的,用户无法将其解散。
属性检查器显示导航控制器的表示选项
苹果在这个链接上分享了一个关于它的示例代码
它使用isModalInPresentation作为许多用户的建议。
If you want the same behaviour as it's in previous iOS version (< iOS13) like model presentation in fullscreen, just set the presentation style of your destination view controller to UIModalPresentationStyle.fullScreen let someViewController = \*VIEW CONTROLLER*\ someViewController.modalPresentationStyle = .fullScreen And if you are using storyboard just select the segua and select Full Screen form the Presentation dropdown. If you just want to disable the interactive dismissal and keep the new presentation style set UIViewController property isModalInPresentation to true. if #available(iOS 13.0, *) { someViewController.isModalInPresentation = true // available in IOS13 }
属性isModalInPresentation可能会有所帮助。
从文档中可以看到:
当你将它设置为true时,UIKit会忽略视图控制器边界之外的事件,并防止视图控制器在屏幕上时被交互式丢弃。
你可以这样使用它:
let controller = MyViewController()
controller.isModalInPresentation = true
self.present(controller, animated: true, completion: nil)
所有的解决方案都很好,但在我的情况下,我需要一个停止移动的选项。 这是一个代码。
如果你想阻止移动:
self.yourViewController?.presentedView?.gestureRecognizers?[0].isEnabled = false
如果你想解锁移动:
self.yourViewController?.presentedView?.gestureRecognizers?[0].isEnabled = true