我知道在UIDevice类上有2个属性
uniqueIdentificer - with is no longer available in iOS 7; and
identifierForVendor - with is only available in iOS 6 and above...
我怎么知道我的应用程序是运行应用程序还是其他任何设备? 我需要这个从iOS 4.3到7.1运行的应用程序
即:
if (isMyDevice) {
// Run this code
} else {
// Run that code
}
tks guys
答案 0 :(得分:0)
使用此if语句,并在其中检查udid是否属于您:
if([[UIDevice currentDevice] systemVersion] < 7.0) {
}
else {
}