Disable view controller with custom animation?

I use this line of code to reject my view controller self.dismiss(animated: true, completion: nil) , but I don't like the current animation. Instead, I want to slide from left to right. Below is my attempt to test the animation, but it does not work.

 UIView.animate(withDuration: 1.0, delay: 0.0, options: UIViewAnimationOptions.curveEaseIn, animations: { let transition = CATransition() transition.duration = 10 transition.type = kCATransitionPush transition.subtype = kCATransitionFromLeft self.view.layer.add(transition, forKey: kCATransition) self.dismiss(animated: false, completion: nil) }, completion: nil) 
+6
source share
1 answer
 let transition: CATransition = CATransition() transition.duration = 0.5 transition.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut) transition.type = kCATransitionReveal transition.subtype = kCATransitionFromRight self.view.window!.layer.add(transition, forKey: nil) self.dismissViewControllerAnimated(false, completion: nil) 
+20
source

All Articles