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.
27 lines
643 B
27 lines
643 B
// |
|
// 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 ?? "")" |
|
} |
|
|
|
}
|
|
|