自定义推送转换不起作用,而相同的自定义转换是

时间:2016-08-22 11:39:02

标签: ios swift custom-transition

我已关注this tutorial并就此主题观看了the WWDC video,但我找不到答案。

我的代码中的转换几乎相同。当我将它作为一个呈现视图时,它工作得很好,但不是作为推送视图。

当弹出时,它应该将推送视图的快照从CGRect动画到全屏,反之亦然。

以下是我的UIViewControllerAnimatedTransitioning课程的代码:

class ZoomingTransitionController: NSObject, UIViewControllerAnimatedTransitioning {

    let originFrame: CGRect
    let isDismissing: Bool

    init(originFrame: CGRect, isDismissing: Bool) {
        self.originFrame = originFrame
        self.isDismissing = isDismissing
    }

    func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
        return Constant.Animation.VeryShort
    }

    func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
        let containerView = transitionContext.containerView

        guard let fromVC = transitionContext.viewController(forKey: UITransitionContextViewControllerKey.from),
            let toVC = transitionContext.viewController(forKey: UITransitionContextViewControllerKey.to) else {
                return
        }

        let finalFrame = transitionContext.finalFrame(for: toVC)

        toVC.view.frame = finalFrame

        let snapshot = self.isDismissing ? fromVC.view.snapshotView(afterScreenUpdates: true) : toVC.view.snapshotView(afterScreenUpdates: true)
        snapshot?.frame = self.isDismissing ? finalFrame : self.originFrame
        snapshot?.layer.cornerRadius = Constant.FakeButton.CornerRadius
        snapshot?.layer.masksToBounds = true

        containerView.addSubview(toVC.view)
        containerView.addSubview(snapshot!)

        if self.isDismissing {
            fromVC.view.isHidden = true
        } else {
            toVC.view.isHidden = true
        }

        let duration = transitionDuration(using: transitionContext)

        UIView.animate(withDuration: duration,
                       animations: {
            snapshot?.frame = self.isDismissing ? self.originFrame : finalFrame
            },
                       completion: { _ in
                        if self.isDismissing {
                            fromVC.view.isHidden = false
                        } else {
                            toVC.view.isHidden = false
                        }

                        snapshot?.removeFromSuperview()
                        transitionContext.completeTransition(!transitionContext.transitionWasCancelled)
        })
    }
}

然后,我尝试使用两种方式显示一个新的视图控制器:通过呈现它和推送它。

我的FromViewController正在继承UINavigationControllerDelegateUIViewControllerTransitioningDelegate

FromViewController上课展示 ToViewController(工作正常):

func buttonAction(_ sender: AnyObject) {
    self.tappedButtonFrame = sender.frame

    let toVC = self.storyboard!.instantiateViewController(withIdentifier: "ToViewController")
    toVC.transitioningDelegate = self

    self.present(toVC, animated: true, completion: nil)
}

func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    let transitionController = ZoomingTransitionController(originFrame: self.tappedButtonFrame, isDismissing: false)

    return transitionController
}

func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    let transitionController = ZoomingTransitionController(originFrame: self.tappedButtonFrame, isDismissing: true)

    return transitionController
}

FromViewController上课推送 ToViewController(不起作用):

func buttonAction(_ sender: AnyObject) {
    self.tappedButtonFrame = sender.frame

    let toVC = self.storyboard!.instantiateViewController(withIdentifier: "ToViewController")

    self.navigationController?.pushViewController(toVC, animated: true)
}

func navigationController(_ navigationController: UINavigationController, animationControllerFor operation: UINavigationControllerOperation, from fromVC: UIViewController, to toVC: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    switch operation {
    case .push:
        return ZoomingTransitionController(originFrame: self.tappedButtonFrame, isDismissing: false)

    case .pop:
        return ZoomingTransitionController(originFrame: self.tappedButtonFrame, isDismissing: true)

    default:
        return nil
    }
}

推送时,调用委托方法并且ZoomingTransitionController执行其代码正常(进入animateTransition直到结束而没有明显的问题)。但是在屏幕上,快照视图不会随时显示。 ToVC在转换持续时间后出现,但同时没有任何其他内容。

我对如何调试这个问题已经不知所措了......你有什么想法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

我通过CGAffineTransform的{​​{1}}替换了快照元素(导致问题)找到了答案。

代码几乎与here相同。