swift 获取app版本号及 ios 版本号
swift 获取app版本号及 ios 版本号
func versionCheck(){
let infoDictionary = NSBundle.mainBundle().infoDictionary
let appDisplayName: AnyObject? = infoDictionary["CFBundleDisplayName"]
let majorVersion : AnyObject? = infoDictionary ["CFBundleShortVersionString"]
let minorVersion : AnyObject? = infoDictionary ["CFBundleVersion"]
let appversion = majorVersion as String
let iosversion : NSString = UIDevice.currentDevice().systemVersion //ios 版本
let identifierNumber = UIDevice.currentDevice().identifierForVendor //设备 udid
let systemName = UIDevice.currentDevice().systemName //设备名称
let model = UIDevice.currentDevice().model //设备型号
let localizedModel = UIDevice.currentDevice().localizedModel //设备区域化型号 如 A1533
println(appversion)
}
majorVersion 主程序版本号
minorVersion build 版本号
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。