|
@@ -17,7 +17,8 @@ class MVSettingController: MVBaseController{
|
|
|
let infoDictionary = Bundle.main.infoDictionary
|
|
|
|
|
|
let majorVersion :String = infoDictionary! ["CFBundleShortVersionString"] as! String//主程序版本号
|
|
|
- tipsA.text = "APP版本号\nV\(majorVersion)"
|
|
|
+ let buildVersion :String = infoDictionary! ["CFBundleVersion"] as! String//主程序版本号
|
|
|
+ tipsA.text = "APP版本号\nV\(majorVersion)\n\(buildVersion)"
|
|
|
tipsA.lineBreakMode = .byWordWrapping
|
|
|
tipsA.textAlignment = .center
|
|
|
tipsA.numberOfLines = 0
|
|
@@ -100,7 +101,7 @@ class MVSettingController: MVBaseController{
|
|
|
make.width.equalTo(182)
|
|
|
make.height.equalTo(160)
|
|
|
make.centerX.equalToSuperview()
|
|
|
- make.top.equalToSuperview().offset(313)
|
|
|
+ make.top.equalToSuperview().offset(113)
|
|
|
}
|
|
|
|
|
|
protocolLab.snp.makeConstraints { make in
|