您的位置:首页 > 移动开发 > IOS开发

IOS开发之--获取设备类型和系统版本号

2012-06-13 09:15 405 查看
#import "sys/utsname.h"

/*

* the model

* "i386" simulator

* "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)getDeviceModelAndSysVersion

{

//here use sys/utsname.h

struct utsname systemInfo;

uname(&systemInfo);

//get the device model

NSString *model = [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding]);

NSString *version = [[UIDevice currentDevice] systemVersion];

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: