IHNextViewController.swift 435 B

1234567891011121314151617181920212223
  1. //
  2. // IHNextViewController.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2019/12/19.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHNextViewController: UIViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. view.backgroundColor = .random
  13. // Do any additional setup after loading the view.
  14. self.navigationBarTitle = "下一页"
  15. }
  16. }