開發(fā)iOS平臺(tái)的應(yīng)用的時(shí)候苟跪,可以獲取iOS設(shè)備的設(shè)備信息亲配,包括設(shè)備的名稱,設(shè)備的機(jī)型谁帕,設(shè)備的iOS版本等等峡继。設(shè)備信息主要來自 UIDevice 類。
代碼如下:
UIDevice *currentDevice = [UIDevice currentDevice];
NSString *strName = currentDevice.name; //設(shè)備名稱
NSString *strModel = currentDevice.model; //設(shè)備類別
NSString *strLocalizedModel = currentDevice.localizedModel; //設(shè)備本地化版本
NSString *strSystemName = currentDevice.systemName; //設(shè)備運(yùn)行的系統(tǒng)
NSString *strSystemVersion = currentDevice.systemVersion; //當(dāng)前系統(tǒng)版本
NSString *strUUIDString = currentDevice.identifierForVendor.UUIDString; //系統(tǒng)識(shí)別碼