码迷,mamicode.com
首页 > 移动开发 > 详细

获取ios设备信息

时间:2018-10-09 11:42:23      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:device   targe   cal   ber   font   hone   main   mongo   ios设备   

// 获取ios设备信息
- (void)viewDidLoad {
NSString *content=[[NSString alloc]
initWithFormat:
@"unique id: %@ \nlocalized model: %@ \nsystem version: %@ \nsystem name: %@ \nmodel: %@",
[[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设备信息

标签:device   targe   cal   ber   font   hone   main   mongo   ios设备   

原文地址:https://www.cnblogs.com/frounk/p/9759271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!