簡體   English   中英

iOS 10 - 自定義動畫后的黑屏

[英]iOS 10 - black screen after custom animation

我有一個正常工作的自定義動畫,除了在解雇動畫結束時,有一個黑屏。

過渡的代碼是:

class FolderAnimationController: NSObject, UIViewControllerAnimatedTransitioning {

    let duration    = 5.0
    var presenting  = true
    var originFrame = CGRect.zero
    var selectedFolderCell: FolderCollectionViewCell?

    func transitionDuration(_ transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
        return duration
    }

    func animateTransition(_ transitionContext: UIViewControllerContextTransitioning) {

        let containerView = transitionContext.containerView()
        let toViewC = transitionContext.viewController(forKey: UITransitionContextToViewControllerKey)!
        let fromViewC = transitionContext.viewController(forKey: UITransitionContextFromViewControllerKey)!
        let folderViewC = presenting ? fromViewC as! ViewController : transitionContext.viewController(forKey: UITransitionContextToViewControllerKey) as! ViewController
        let projectViewC = presenting ? toViewC as! ProjectViewController : transitionContext.viewController(forKey: UITransitionContextFromViewControllerKey) as! ProjectViewController

        let cellView = presenting ? (folderViewC.folderCollectionView.cellForItem(at: (folderViewC.folderCollectionView.indexPathsForSelectedItems()?.first!)!) as! FolderCollectionViewCell).folderView : projectViewC.containerView
        let cellSnapshot: UIView = presenting ? cellView!.snapshotView(afterScreenUpdates: false)! : cellView!.snapshotView(afterScreenUpdates: false)!
        let cellFrame = containerView.convert(cellView!.frame, from: cellView!.superview)
        cellSnapshot.frame = cellFrame
        cellView!.isHidden = true

        toViewC.view.frame = transitionContext.finalFrame(for: toViewC)
        toViewC.view.layoutIfNeeded()
        toViewC.view.alpha = 0

        presenting ? (projectViewC.containerView.isHidden = true) : (self.selectedFolderCell!.folderView.isHidden = true)
        containerView.addSubview(toViewC.view)
        containerView.addSubview(cellSnapshot)

        UIView.animate(withDuration: duration, animations: {

            toViewC.view.alpha = 1.0

            let finalFrame = self.presenting ? projectViewC.containerView.frame : self.originFrame
            cellSnapshot.frame = finalFrame
        }) { (_) in
            self.presenting ? (projectViewC.containerView.isHidden = false) : (self.selectedFolderCell?.isHidden = false)
            cellSnapshot.removeFromSuperview()
            transitionContext.completeTransition(true)

        }

    }
}

以及調用動畫的第一個視圖控制器的代碼:

func animationController(forPresentedController presented: UIViewController, presenting: UIViewController, sourceController source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    presentAnimator.presenting = true
    presentAnimator.originFrame = openingFrame!
    presentAnimator.selectedFolderCell = selectedCell!

    return presentAnimator
}

func animationController(forDismissedController dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
    presentAnimator.presenting = false

    return presentAnimator
}

使用UIViewPropertyAnimator.runningPropertyAnimator代替UIView.animate

在Xcode 8的第一個測試版中有一個錯誤。它在第二個測試版上得到了解決。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM