1. 程式人生 > >iphone開發-UIDevice用法彙總

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]];//已經使用的記憶體