//globallyUniqueString 唯一标示符,每次调用都会不一样
[[NSProcessInfo processInfo] globallyUniqueString];
//操作系统名称
[[NSProcessInfo processInfo] operatingSystemName];
//操作系统版本
[[NSProcessInfo processInfo] operatingSystemVersionString];
//物理内存
[[NSProcessInfo processInfo] physicalMemory];
//进程名称
[[NSProcessInfo processInfo] processName];
//供应商标识
[[UIDevice currentDevice] identifierForVendor];
//设备名称
[[UIDevice currentDevice] userInterfaceIdiom];
//设备类型
[[UIDevice currentDevice] name];
//系统名称
[[UIDevice currentDevice] systemName];
//系统版本
[[UIDevice currentDevice] systemVersion];
//模型 iPad or iPhone
[[UIDevice currentDevice] model];
//本地化模型
[[UIDevice currentDevice] localizedModel];
//电池状态
[[UIDevice currentDevice] batteryLevel];
//判断设置是否是7.0以上版本
[[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0f;
//判断设置是否是iPhone 或者iPad TV
[[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad;
[[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone;
[[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomTV;
iOS获取设备信息的常用方法
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- PLEASE READ THE FOLLOWING APPLE DEVELOPER PROGRAM LICENSE...