ios - UINavigationControllerDelegate 方法,在 ios 8 中使用导航 Controller 自定义转换

标签 ios swift uinavigationcontroller custom-transition

我正在尝试在弹出或推送导航 Controller 时创建自定义转换。我创建了一个符合UINavigationControllerDelegate 的transitionManager 类。我已经创建了这个transitionManager 的对象,并将其作为transitioningDelegate 添加到我的navigationController 中。

推送动画运行得很好,但是当我尝试弹回之前的 viewController 时,我只看到黑屏。

我浏览了许多其他帖子以使其正常工作并尝试了手头的一切,但当我弹出时它仍然没有显示以前的 ViewController。

transitionManager 的代码在这里:

import UIKit

class BRTransitionManager: NSObject, UINavigationControllerDelegate, UIViewControllerAnimatedTransitioning {

    private var presenting = true

    func navigationController(navigationController: UINavigationController, animationControllerForOperation operation: UINavigationControllerOperation, fromViewController fromVC: UIViewController, toViewController toVC: UIViewController) -> UIViewControllerAnimatedTransitioning? {

        if  operation == UINavigationControllerOperation.Push{
            self.presenting = true
        } else if operation == UINavigationControllerOperation.Pop{
            self.presenting = false
        }

        return self
    }

    func animateTransition(transitionContext: UIViewControllerContextTransitioning) {
        let container = transitionContext.containerView()
        let fromView = transitionContext.viewForKey(UITransitionContextFromViewKey)!
        let toView = transitionContext.viewForKey(UITransitionContextToViewKey)!

        // set up from 2D transforms that we'll use in the animation
        let offScreenRight = CGAffineTransformMakeTranslation(container.frame.width, 0)
        let offScreenLeft = CGAffineTransformMakeTranslation(-container.frame.width, 0)

        // prepare the toView for the animation
        if (self.presenting == true) {
            // add the both views to our view controller
            container.addSubview(toView)
            // container.addSubview(fromView)

            toView.transform = offScreenRight
        } else {
            toView.transform = offScreenLeft
        }

        let duration = self.transitionDuration(transitionContext)
        UIView.animateWithDuration(duration, delay: 0.0, usingSpringWithDamping: 0.5, initialSpringVelocity: 0.8, options: nil, animations: {

            if (self.presenting == true) {
                fromView.transform = offScreenLeft
            } else {
                fromView.transform = offScreenRight
            }

            toView.transform = CGAffineTransformIdentity

        }, completion: { finished in

            transitionContext.completeTransition(true)
        })
    }

    func transitionDuration(transitionContext: UIViewControllerContextTransitioning) -> NSTimeInterval {
        return 0.8
    }   
}

最佳答案

UINavigationController 维护对其委托(delegate)的弱引用。如果没有强引用,则 UINavigationControllerDelegate 对象在转换完成后被释放。

您可以在 Storyboard Editor 中设置委托(delegate)对象。通过将对象从调色板拖动到导航 Controller 场景中的 First Responder 和 Exit 图标之间来添加一个对象。将其类设置为您的委托(delegate)对象的类。确保该模块是您当前的应用程序模块。然后按住 Control 从导航 Controller 图标拖动到对象图标,然后从弹出菜单中选择“委托(delegate)”。

这似乎维护了对委托(delegate)对象的强引用。然后委托(delegate)对象将可用于调用展开转换。您不需要自己创建对象或设置委托(delegate)引用。

我在 Scott James Remnant 的博客文章中发现了这种技术。

Scott James Remnant - Custom iOS Segues, Transitions, and Animations - The Right Way

关于ios - UINavigationControllerDelegate 方法,在 ios 8 中使用导航 Controller 自定义转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31424599/

相关文章:

iphone - 如何显示不属于 UINavigationController 根目录的 UITabBar?

ios - 具有结构的通用函数

iphone - 跟踪分配测试结果 - 看起来不错还是不太好?

ios - 如何向按钮添加圆角半径和图标?

使用封闭范围的 Swift For 循环

objective-c - iOS 使用 navigationController popToRootViewControllerAnimated

ios - 如何强制 UICollectionView 滚动到特定行并加载该行的单元格,同时隐藏 Collection View ?

iphone - Index like iOS 联系人应用

ios - 碰撞时完全停止 Sprite

ios - 使用 Storyboard和导航 Controller 检测 MPMoviePlayerController 上的点击