获取ios设备信息

Posted frounk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取ios设备信息相关的知识,希望对你有一定的参考价值。

// 获取ios设备信息
- (void)viewDidLoad {
NSString *content=[[NSString alloc]
initWithFormat:
@"unique id: %@ localized model: %@ system version: %@ system name: %@ model: %@",
[[UIDevice currentDevice] uniqueIdentifier],
[[UIDevice currentDevice] localizedModel],
[[UIDevice currentDevice] systemVersion],
[[UIDevice currentDevice] systemName],
[[UIDevice currentDevice] model]];
 
UIDevice *device_=[[UIDevice alloc] init];
 
NSLog(@"设备所有者的名称--%@",device_.name);
 
NSLog(@"设备的类别-----%@",device_.model);
 
NSLog(@"设备的的本地化版本-%@",device_.localizedModel);
 
NSLog(@"设备运行的系统---%@",device_.systemName);
 
NSLog(@"当前系统的版本---%@",device_.systemVersion);
 
NSLog(@"设备识别码-----%@",device_.identifierForVendor.UUIDString);
 
//得到设备屏幕高度
 
float screenHeight=[UIScreen mainScreen].bounds.size.height;
NSLog(@"%@",content) ;
NSLog(@" screenHeight is %f",screenHeight)
 
//得到手机本机号
id number= [[NSUserDefaults standardUserDefaults] objectForKey:@"SBFormattedPhoneNumber"];
 
NSLog(@"number is %@",number);
 
}

以上是关于获取ios设备信息的主要内容,如果未能解决你的问题,请参考以下文章

iOS获取设备信息与应用信息

UDID是啥 如何获取iOS设备UDID

iOS ---------- 获取设备的各种信息

iOS 获取设备的各种信息的方法

iOS获取设备型号设备类型等信息

如何以编程方式获取完整的 ios 设备详细信息