Newer
Older
Meterage_iOS / Meterage / ViewControllers / Sample / SamplePageViewController.swift
Pengxh on 3 Feb 2023 1009 bytes 完成"首页"Tab页
//
//  SamplePageViewController.swift
//  Meterage
//
//  Created by 203 on 2023/2/1.
//

import UIKit

class SamplePageViewController: UIViewController {

    @IBOutlet weak var topStackView: UIStackView!

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .mainBackground
        navigationItem.title = "样品记录"
        navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.mainTextColor]
        // Do any additional setup after loading the view.
        topStackView.layer.cornerRadius = 10
        topStackView.layer.masksToBounds = true
    }


    /*
    // 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.
    }
    */

}