美文网首页
iOS自定义转场动画

iOS自定义转场动画

作者: 夜游er | 来源:发表于2016-03-11 20:49 被阅读353次

    A Beginner’s Guide to Animated Custom Segues in iOS 8通过自定义Segue来达到自定义转场动画的效果,但是这种做法有个非常大的缺点,目标ViewController的viewWillAppearviewDidAppear会调用两次
    第一次window?.insertSubview(destView, aboveSubview: sourceView)
    引起的
    第二次
    self.sourceViewController.presentViewController(self.destinationViewController, animated: false, completion: nil)
    引起的

    iOS Animation Tutorial: Custom View Controller Presentation Transitions提到另一种自定义转场动画却不会引起上述该问题

    根据这篇教程,写了弹窗动画的Demo:
    CustomPresentaionTranisitions

    相关文章

      网友评论

          本文标题:iOS自定义转场动画

          本文链接:https://www.haomeiwen.com/subject/vtlxlttx.html