DismissSegue.swift 251 B

123456789101112
  1. //
  2. // Created by Jake Lin on 12/14/15.
  3. // Copyright © 2015 IBAnimatable. All rights reserved.
  4. //
  5. import UIKit
  6. open class DismissSegue: UIStoryboardSegue {
  7. open override func perform() {
  8. source.dismiss(animated: true, completion: nil)
  9. }
  10. }