UIViewController+JChat.swift 304 B

123456789101112131415
  1. //
  2. // UIViewController+JChat.swift
  3. // JChat
  4. //
  5. // Created by 邓永豪 on 2017/10/8.
  6. // Copyright © 2017年 HXHG. All rights reserved.
  7. //
  8. import UIKit
  9. extension UIViewController {
  10. func back(_ animated: Bool = true) {
  11. navigationController?.popViewController(animated: animated)
  12. }
  13. }