IOS开发-Object-C获取手机设备信息(UIDevice)
获取UiDevice设备信息
// 获取设备名称 NSString *name = [[UIDevice currentDevice] name]; // 获取设备系统名称 NSString *systemName = [[UIDevice currentDevice] systemName]; // 获取系统版本 NSString *systemVersion = [[UIDevice currentDevice] systemVersion]; // 获取设备模型 NSString *model = [[UIDevice currentDevice] model]; // 获取设备本地模型 NSString *localizedModel = [[UIDevice currentDevice] localizedModel];
获取Bundle的相关信息
NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary]; // app名称 NSString *appName = infoDict[@"CFBundleName"]; // app版本 NSString *appVersion = infoDict[@"CFBundleShortVersionString"]; // app build版本 NSString *appBuild = infoDict[@"CFBundleVersion"];
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。