2013-03-30 54 views

回答

0

是,我找到了答案這個

#define IS_IPHONE ([[[UIDevice currentDevice] model] isEqualToString:@"iPhone"]) 
#define IS_IPOD ([[[UIDevice currentDevice] model] isEqualToString:@"iPod touch"]) 
1

下面的代碼用於查找當前設備

NSString *deviceStr = [UIDevice currentDevice].model; 
NSLog(@"device:%@",deviceStr); 

,如果你的設備是iPod的那麼它將返回

iPod touch 

如果您的設備是iPhone

iPhone 

,如果你的設備是iPad的

iPad 
相關問題