?Swift获取手机设备信息

使用UiDevice获取设备信息:

获取设备名称

let name = UIDevice.currentDevice().name

获取设备系统名称

let systemName = UIDevice.currentDevice().systemName

获取系统版本

let systemVersion = UIDevice.currentDevice().systemVersion

获取设备模型

let model = UIDevice.currentDevice().model

获取设备本地模型

let localizedModel = UIDevice.currentDevice().localizedModel

 

Swift获取Bundle的相关信息:

技术分享
let infoDict = NSBundle.mainBundle().infoDictionary
if let info = infoDict? {
    // app名称
    let appName = info["CFBundleName"] as String!
    // app版本
    let appVersion = info["CFBundleShortVersionString"] as String!
    // app build版本
    let appBuild = info["CFBundleVersion"] as String!
}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。