I am using presentViewController to present new screen
let dashboardWorkout = DashboardWorkoutViewController() presentViewController(dashboardWorkout, anima
Try this.
let transition: CATransition = CATransition() transition.duration = 0.3 transition.type = kCATransitionReveal transition.subtype = kCATransitionFromLeft self.view.window!.layer.addAnimation(transition, forKey: nil) self.dismissViewControllerAnimated(false, completion: nil)