@objc(SEPushNoAnimationSegue) class SEPushNoAnimationSegue: UIStoryboardSegue { override func perform () { self.sourceViewController.navigationController.p
Even Better:
import UIKit class CustomSegue: UIStoryboardSegue { override func perform() { self.sourceViewController.presentViewController(self.destinationViewController as UIViewController, animated: false, completion: nil) } }