作者:倩女甜言蜜语_182 | 来源:互联网 | 2022-10-21 11:08
在iOS 13之前,提供了用于覆盖整个屏幕的视图控制器。并且,在关闭后,将viewDidAppear
执行父视图控制器功能。
现在,iOS 13默认将表单显示为视图控制器,这意味着卡将部分覆盖基础视图控制器,这意味着viewDidAppear
不会被调用,因为父视图控制器从未真正消失过。
有没有一种方法可以检测到所显示的视图控制器工作表已被解雇?我可以在父视图控制器中重写某些其他功能,而不是使用某种委托?
1> matt..:
有没有一种方法可以检测到所显示的视图控制器工作表已被解雇?
是。
我可以在父视图控制器中重写某些其他功能,而不是使用某种委托?
不,“某种委托”是您的工作方式。使自己成为演示控制器的委托和重写presentationControllerDidDismiss(_:)
。
https://developer.apple.com/documentation/uikit/uiadaptivepresentationcontrollerdelegate/3229889-presentationcontrollerdiddismiss
缺少一个一般的运行时生成的事件,通知您所显示的视图控制器(无论是否为全屏)已被关闭,这确实很麻烦。但这不是一个新问题,因为始终存在非全屏显示的视图控制器。只是现在(在iOS 13中)有更多!我在其他地方对此主题进行了单独的问答:统一UIViewController“成为最前面的”检测工具?。
@Irina,您好-如果您以编程方式关闭视图,则不需要回调,因为您已以编程方式关闭视图-您_知道_是您这样做的,因为_you_是这样做的。只有在_user_这样做的情况下,委托方法才可以。
这还不够。如果呈现的VC中有一个nabber,并且有一个以编程方式关闭视图的自定义条形按钮,则不会调用presentation controller的关闭。
2> PiterPan..:
另一个取回viewWillAppear
并viewDidAppear
设置的选项
let vc = UIViewController()
vc.modalPresentatiOnStyle= .fullScreen
此选项全屏显示,关闭后调用上述方法
这是一种解决方法,而不是解决方法。所有人都回到iOS 12样式表并不是很好。iOS 13很棒!:)
谢谢PiterPan。可以了 这是很好且最快的解决方案。
3> Matt..:
这是父视图控制器的代码示例,该子视图在子视图控制器呈现为工作表时(即,以默认的iOS 13方式)被通知时通知:
public final class Parent: UIViewController, UIAdaptivePresentationControllerDelegate
{
// This is assuming that the segue is a storyboard segue;
// if you're manually presenting, just see the delegate there.
public override func prepare(for segue: UIStoryboardSegue, sender: Any?)
{
if segue.identifier == "mySegue" {
segue.destination.presentationController?.delegate = self;
}
}
public func presentationControllerDidDismiss(
_ presentationController: UIPresentationController)
{
// Only called when the sheet is dismissed by DRAGGING.
// You'll need something extra if you call .dismiss() on the child.
// (I found that overriding dismiss in the child and calling
// presentationController.delegate?.presentationControllerDidDismiss
// works well).
}
}
Jerland2的答案很混乱,因为(a)最初的提问者想在关闭工作表时获得一个函数调用(而他实现了presentationControllerDidAttemptToDismiss,当用户尝试并无法关闭工作表时会调用它),并且(b)设置isModalInPresentation是完全正交的,实际上会使所呈现的图纸不可忽略(这与OP想要的相反)。
这很好。提示:如果在被调用的VC上使用导航控制器,则应将导航控制器分配为presentationController?,delegate(而不是将导航所具有的VC作为topViewController)。
4> Jerland2..:
For future readers here is a more complete answer with implementation:
In the root view controllers prepare for segue add the following (Assuming your modal has a nav controller)
// Modal Dismiss iOS 13
modalNavController.presentationController?.delegate = modalVc
In the modal view controller add the following delegate + method
// MARK: - iOS 13 Modal (Swipe to Dismiss)
extension ModalViewController: UIAdaptivePresentationControllerDelegate {
func presentationControllerDidAttemptToDismiss(_ presentationController: UIPresentationController) {
print("slide to dismiss stopped")
self.dismiss(animated: true, completion: nil)
}
}
Ensure in the modal View Controller that the following property is true in order for the delegate method to be called
self.isModalInPresentation = true
Profit