123456789101112131415161718192021222324252627282930313233 |
- //
- // YMBaseViewController.swift
- // MvpGoods
- //
- // Created by 小花 on 2019/3/18.
- // Copyright © 2019年 MVP. All rights reserved.
- //
- import UIKit
- import FDFullscreenPopGesture
- class YMBaseViewController: UIViewController {
- override func viewDidLoad() {
- super.viewDidLoad()
- navigationController?.fd_prefersNavigationBarHidden = true
- self.automaticallyAdjustsScrollViewInsets = false
- }
-
- /*
- // MARK: - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
- // Get the new view controller using segue.destination.
- // Pass the selected object to the new view controller.
- }
- */
- }
|