1234567891011121314151617181920212223 |
- //
- // IHNextViewController.swift
- // Inhealth
- //
- // Created by weclouds on 2019/12/19.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- import UIKit
- class IHNextViewController: UIViewController {
- override func viewDidLoad() {
- super.viewDidLoad()
- view.backgroundColor = .random
- // Do any additional setup after loading the view.
- self.navigationBarTitle = "下一页"
- }
-
-
- }
|