首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

IOS开发之──取得设备类型和系统版本号

2013-10-02 
IOS开发之──获得设备类型和系统版本号?* ?iPod1,1 ? ? ? iPod Touch?* ?iPhone1,1 ? ? iPhone?* ?iPh

IOS开发之──获得设备类型和系统版本号

?* ?"iPod1,1" ? ? ? iPod Touch

?* ?"iPhone1,1" ? ? iPhone

?* ?"iPhone1,2" ? ? iPhone 3G

?* ?"iPhone2,1" ? ? iPhone 3GS

?* ?"iPad1,1" ? ? ? iPad

?* ?"iPhone3,1" ? ? iPhone 4

?* ?@return null

?*/

- (void)getDeviceAndOSInfo

{

? ? //here use sys/utsname.h

? ? struct utsname systemInfo;

? ? uname(&systemInfo);

? ? //get the device model and the system version

? ? NSLog(@"%@", [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding]);

? ? NSLog(@"%@", [[UIDevice currentDevice] systemVersion]);

}

热点排行