gpt4 book ai didi

iOS 自定义 Segue - 滑过效果

转载 作者:搜寻专家 更新时间:2023-11-01 06:43:28 24 4
gpt4 key购买 nike

我第一次尝试构建自定义转场。期望的结果是在前一个 ViewController 后面创建新的 ViewController,然后使前一个幻灯片像从屏幕上弹出/移除一样。我的问题是我无法做到这一点。如果我在前一个下方创建新的(在这种情况下两者都向上滑动,一个弹出另一个插入)没关系,但这不是我想要做的。我设法做的唯一一件事就是单独向上滑动前一个,但它下面有一个黑色背景而不是新 View ...

这是我的代码(两者都在那个代码上滚动,这不是预期的结果):

override func perform() {

let viewControllerToRemove = self.sourceViewController.view as UIView!
let viewControllerToShow = self.destinationViewController.view as UIView!

let screenWidth = UIScreen.mainScreen().bounds.size.width
let screenHeight = UIScreen.mainScreen().bounds.size.height



viewControllerToShow.frame = CGRectMake(0.0, screenHeight, screenWidth, screenHeight)

let window = UIApplication.sharedApplication().keyWindow
window?.insertSubview(viewControllerToShow, aboveSubview: viewControllerToRemove)


UIView.animateWithDuration(0.6, animations: { () -> Void in

viewControllerToShow.frame = CGRectOffset(viewControllerToShow.frame, 0.0, -screenHeight)
viewControllerToRemove.frame = CGRectOffset(viewControllerToRemove.frame, 0.0, -screenHeight)

}) { (Finished) -> Void in
self.sourceViewController.presentViewController(self.destinationViewController as UIViewController,
animated: false,
completion: nil)

}
}

欢迎任何帮助,提前致谢!

最佳答案

您应该使用过渡管理器,请参阅这些委托(delegate):UIViewControllerAnimatedTransitioning 和 UIViewControllerTransitioningDelegate

对于你的动画来说,如果有一个全局容器就会容易得多,因为在你的动画中只有一个 View 是动画的。

使用转换管理器,两个 View 都在一个转换容器中,因此您可以将 destinationView 作为可见背景。

func animateTransition(transitionContext: UIViewControllerContextTransitioning) {

// get reference to our fromView, toView and the container view that we should perform the transition in
let container = transitionContext.containerView()
let fromView = transitionContext.viewForKey(UITransitionContextFromViewKey)!
let toView = transitionContext.viewForKey(UITransitionContextToViewKey)!

然后将框架设置为在同一位置具有两个 View ,然后执行如下操作:

container.addSubview(toView)
container.addSubview(fromView)
container.sendSubviewToBack(toView)

当您为 fromView 设置动画时,这次您将在后台看到 toView。

有关此链接的更多信息:http://mathewsanders.com/animated-transitions-in-swift/

关于iOS 自定义 Segue - 滑过效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33127322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com