怎样推断 ios设备的类型(iphone,ipod,ipad)
Posted yangykaifa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样推断 ios设备的类型(iphone,ipod,ipad)相关的知识,希望对你有一定的参考价值。
-(bool)checkDevice:(NSString*)name { NSString* deviceType = [UIDevice currentDevice].model; NSLog(@"deviceType = %@", deviceType); NSRange range = [deviceType rangeOfString:name]; return range.location != NSNotFound; }
NSString * [email protected]"iPhone"; NSString * [email protected]"iPod"; NSString * [email protected]"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)的主要内容,如果未能解决你的问题,请参考以下文章
你能确定插入 iphone/ipad/ipod 耳机插孔的具体设备类型吗?