优惠券swift版马甲包

YMBaseViewController.swift 790B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // YMBaseViewController.swift
  3. // MvpGoods
  4. //
  5. // Created by 小花 on 2019/3/18.
  6. // Copyright © 2019年 MVP. All rights reserved.
  7. //
  8. import UIKit
  9. import FDFullscreenPopGesture
  10. class YMBaseViewController: UIViewController {
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. navigationController?.fd_prefersNavigationBarHidden = true
  14. self.automaticallyAdjustsScrollViewInsets = false
  15. }
  16. /*
  17. // MARK: - Navigation
  18. // In a storyboard-based application, you will often want to do a little preparation before navigation
  19. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  20. // Get the new view controller using segue.destination.
  21. // Pass the selected object to the new view controller.
  22. }
  23. */
  24. }