You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
709 B

2 years ago
//
// AboutVC.swift
// HPlusFit
//
// Created by lemo. on 2019/11/9.
// Copyright © 2019 lemo. All rights reserved.
//
import UIKit
class AboutVC: ViewController {
@IBOutlet weak var aboutLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = kHexColor(0xFAFAFA)
//
for subView in view.subviews {
for constrain in subView.constraints {
constrain.constant = kScaleWidth(constrain.constant)
}
}
// aboutLabel.text = "Version \(kAppCurrentVersion ?? "").\(kAppBuildVersion ?? "")"
aboutLabel.text = "Version \(kAppCurrentVersion ?? "")"
2 years ago
}
}