Swift'te bunu yapmanın birçok yolu :
Aşağıdaki modeli kontrol ediyoruz (burada yalnızca büyük / küçük harfe duyarlı bir arama yapabiliriz):
class func isUserUsingAnIpad() -> Bool {
let deviceModel = UIDevice.currentDevice().model
let result: Bool = NSString(string: deviceModel).containsString("iPad")
return result
}
Aşağıdaki modeli kontrol ediyoruz (burada büyük / küçük harfe duyarlı / duyarsız bir arama yapabiliriz):
class func isUserUsingAnIpad() -> Bool {
let deviceModel = UIDevice.currentDevice().model
let deviceModelNumberOfCharacters: Int = count(deviceModel)
if deviceModel.rangeOfString("iPad",
options: NSStringCompareOptions.LiteralSearch,
range: Range<String.Index>(start: deviceModel.startIndex,
end: advance(deviceModel.startIndex, deviceModelNumberOfCharacters)),
locale: nil) != nil {
return true
} else {
return false
}
}
UIDevice.currentDevice().userInterfaceIdiom
aşağıda iPad yalnızca uygulama iPad veya Universal içinse döndürür. Bir iPad'de çalıştırılan bir iPhone uygulamasıysa, olmayacaktır. Bunun yerine modeli kontrol etmelisiniz. :
class func isUserUsingAnIpad() -> Bool {
if UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Pad {
return true
} else {
return false
}
}
Aşağıdaki snippet, sınıf bir miras almazsa derlenmez UIViewController
, aksi takdirde gayet iyi çalışır. Ne olursa olsun UI_USER_INTERFACE_IDIOM()
iPad sadece uygulama iPad veya Universal içinse döner. Bir iPad'de çalıştırılan bir iPhone uygulamasıysa, olmayacaktır. Bunun yerine modeli kontrol etmelisiniz. :
class func isUserUsingAnIpad() -> Bool {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.Pad) {
return true
} else {
return false
}
}
UI_USER_INTERFACE_IDIOM()
eşittir([[UIDevice currentDevice] respondsToSelector:@selector(userInterfaceIdiom)] ? [[UIDevice currentDevice] userInterfaceIdiom] : UIUserInterfaceIdiomPhone)
. Sonucu bir yerde önbelleğe almanız daha iyi olabilirBOOL iPad = UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad; … if (iPad) …
.