iOS开发过程中,有时候为了更好的用户体验或者为了bug跟踪,可能会需要获取用户的应用信息、系统信息、设备信息。这些信息的获取可以根据不同的设备或者App、系统版本来提供不同的功能或更好的用户体验,或者让开发者能更好的分析用户的问题原因。
你说不要啰嗦了:Talk is cheap, show me the code!
好的,code来了:
-
获取设备名称
OC代码
NSString *deviceName = [[UIDevice currentDevice] name];
Swift代码
let deviceName = UIDevice.currentDevice().name
-
获取系统版本号
OC代码
NSString *sysVersion = [[UIDevice currentDevice] systemVersion];
Swift代码
let sysVersion = UIDevice.currentDevice().systemVersion
-
获取设备唯一标识符
OC代码
NSString *deviceUUID = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
Swift代码
let deviceUUID = UIDevice.currentDevice().identifierForVendor?.UUIDString
-
获取设备的型号
OC代码
NSString *deviceModel = [[UIDevice currentDevice] model];
Swift代码
let deviceModel = UIDevice.currentDevice().model
-
获取App相关的信息
OC代码
NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];
// 获取App的版本号
NSString *appVersion = [infoDic objectForKey:@"CFBundleShortVersionString"];
// 获取App的build版本
NSString *appBuildVersion = [infoDic objectForKey:@"CFBundleVersion"];
// 获取App的名称
NSString *appName = [infoDic objectForKey:@"CFBundleDisplayName"];
Swift代码
let infoDic = NSBundle.mainBundle().infoDictionary
// 获取App的版本号
let appVersion = infoDic?["CFBundleShortVersionString"]
// 获取App的build版本
let appBuildVersion = infoDic?["CFBundleVersion"]
// 获取App的名称
let appName = infoDic?["CFBundleDisplayName"]
有些人可能会说了:“裤子都脱了,你就给我看这个!看你之前写的博客还能看点儿干货,今天第一篇就写着么个玩意儿?尤其是获取设备型号那个,获取出来一个iPhone,你确定不是在逗我吧?”
看官别急,其实这次最主要的就是来分享获取设备型号的方法的,因为我看国内还很少有Swift写的一些东西,也不知道是不是因为我没有找到,就想自己写出来给大家分享,顺便做个笔记。
你会说:获取设备型号比较麻烦,又用的是C语言的一些东西,比较麻烦,而且还得记住所有设备版本号例如:iPhone8,2,实在是记不住啊。当然不用记住,用的时候拷过来就行了,因为我也记不住(责任编辑:最模板) |