Skip to content

Instantly share code, notes, and snippets.

@Otbivnoe
Created January 19, 2018 11:13
Show Gist options
  • Save Otbivnoe/268b3d5bcd1297273fdef95e67354442 to your computer and use it in GitHub Desktop.
Save Otbivnoe/268b3d5bcd1297273fdef95e67354442 to your computer and use it in GitHub Desktop.
class ModalTransition: NSObject {
var animator: Animator?
weak var viewController: UIViewController?
init(animator: Animator? = nil) {
self.animator = animator
}
}
extension ModalTransition: Transition {}
extension ModalTransition: UIViewControllerTransitioningDelegate {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment