Using definesPresentationContext with UIModalPresentationStyle.custom

放肆的年华 提交于 2021-02-06 10:46:06

问题


I am using view controller containment to manage a set of child view controllers which should be able to modally present other view controllers in a custom manner.

I have run into an issue where the definesPresentationContext property is not used when a presenting from a view controller using UIModalPresentationStyle.custom

As an example, I have three view controllers: ROOT, A, and B

ROOT
 |_ A

A is the child of ROOT. I would like to present B modally from A while using custom UIPresentationController, UIViewControllerTransitioningDelegate, and UIViewControllerAnimatedTransitioning.

So I do the following inside the code for controller A (note controller A has definesPresentationContext set to true):

func buttonPressed(_ sender: Any?) {
    let presentationController = MyCustomPresentation()

    let controllerToPresent = B()

    controllerToPresent.modalTransitionStyle = .custom
    controllerToPresent.transitioningDelegate = presentationController

    present(controllerToPresent, animated: true, completion: nil)
}

However, inside my presentation controller (which is also my UIViewControllerAnimatedTransitioning) I encounter the following problem:

func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
    let fromVC = transitionContext.viewController(forKey: .from)
    let toVC = transitionContext.viewController(forKey: .to)

    if let fromVC = fromVC as? A,
        let toVC = toVC as? B {
        //Do the presentation from A to B
    }
}

In this function, where I expect fromVC to be of type A, it is actually ROOT. Despite the fact that A specifies definesPresentationContext.

So I figure this is because I'm using UIModalPresentationStyle.custom. So I change it to UIModalPresentationStyle.overCurrentContext

This causes iOS to correctly read the definesPresentationContext property from A, and my animateTransition function now gets called with the correct from view controller, but:

Because my modal presentation style is no longer .custom, the following method in my transitioning delegate no longer gets called

func presentationController(forPresented presented: UIViewController, presenting: UIViewController?, source: UIViewController) -> UIPresentationController?

So my presentation controller becomes unused.

I want a .custom modal transition style which respects definesPresentationContext. Is this possible? Am I missing something?

Basically, I want a custom modal presentation within the current context.


回答1:


In your UIPresentationController subclass, override shouldPresentInFullscreen as follows:

 override var shouldPresentInFullscreen: Bool {
     get {
         return false
     }
 }

As per the UIPresentationController header:

// By default each new presentation is full screen.
// This behavior can be overriden with the following method to force a current context presentation.
// (Default: YES)
@property(nonatomic, readonly) BOOL shouldPresentInFullscreen;

This along with definesPresentationContext should do the trick.



来源:https://stackoverflow.com/questions/42060290/using-definespresentationcontext-with-uimodalpresentationstyle-custom

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!