我想检查我的应用程序是在 iphone 还是 ipod 中运行。我怎样才能做到这一点?
问问题
1404 次
2 回答
1
使用以下代码查找当前设备
NSString *deviceStr = [UIDevice currentDevice].model;
NSLog(@"device:%@",deviceStr);
如果您的设备是 iPod,那么它将返回
iPod touch
如果您的设备是 iPhone
iPhone
如果您的设备是 iPad
iPad
于 2013-03-30T10:25:59.323 回答
0
是的,我找到了答案
#define IS_IPHONE ([[[UIDevice currentDevice] model] isEqualToString:@"iPhone"])
#define IS_IPOD ([[[UIDevice currentDevice] model] isEqualToString:@"iPod touch"])
于 2013-03-30T10:24:29.050 回答