我怎么知道我的iOS应用程序是在我的设备上还是在其他任何设备上运行?

时间:2014-02-02 16:42:24

标签: ios

我知道在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

1 个答案:

答案 0 :(得分:0)

使用此if语句,并在其中检查udid是否属于您:

if([[UIDevice currentDevice] systemVersion] < 7.0) {
}
else {
}