获取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设备信息

上一篇:03 . Prometheus监控容器和HTTP探针应用


下一篇:文件上传