iphone开发-UIDevice用法汇总

如何取到当前设备的硬件信息和系统信息呢?利用UIDevice就可以。

//软件信息

[[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]];//已经使用的内存

你可能感兴趣的:(iPhone,平台)