您的位置:首页 > 移动开发 > IOS开发

IOS设备信息判断

2014-11-19 19:23 337 查看
转载至http://www.cnblogs.com/mrhgw/archive/2012/06/27/2565798.html

//软件信息

[[UIDevice currentDevice] systemName];//系统名字

[[UIDevice currentDevice] systemVersion];//系统版本号

[[UIDevice currentDevice] uniqueIdentifier];//

[[UIDevice currentDevice] model];  //设备型号

[[UIDevice currentDevice] name];

 // 硬件信息

[UIDevice platform];//平台

[UIDevice cpuFrequency]];//cpu信息

UIDevice busFrequency]];//总线

 [UIDevice totalMemory]];//总内存

UIDevice userMemory]];//已经使用的内存

 

//获取设备型号。

NSString *device = [[UIDevice currentDevice].model substringToIndex:4];
if ([device isEqualToString:@"iPho"]){
    // This is iPhone.
}else if ([device isEqualToString:@"iPad"]){
    // This is iPad.
}else if ([device isEqualToString:@"iPod"]){
    // This is iPod.
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios设备