如何判断 ios设备的类型(iphone,ipod,ipad)
时间:2014-07-18 16:37:30
收藏:0
阅读:358
-(bool)checkDevice:(NSString*)name
{
NSString* deviceType = [UIDevice currentDevice].model;
NSLog(@"deviceType = %@", deviceType);
NSRange range = [deviceType rangeOfString:name];
return range.location != NSNotFound;
}
NSString * nsStrIphone=@"iPhone"; NSString * nsStrIpod=@"iPod"; NSString * nsStrIpad=@"iPad"; bool bIsiPhone=false; bool bIsiPod=false; bool bIsiPad=false; bIsiPhone=[self checkDevice:nsStrIphone]; bIsiPod=[self checkDevice:nsStrIpod]; bIsiPad=[self checkDevice:nsStrIpad];
如何判断 ios设备的类型(iphone,ipod,ipad),布布扣,bubuko.com
原文:http://blog.csdn.net/huang2009303513/article/details/37902237
评论(0)