我的应用程序需要与不同的操作系统版本兼容。
如何检测特定类是否可用于特定操作系统?
例如,NSPopover
仅在Lion及以上版本中可用,因此如果该人使用Snow Leopard,如何检查操作系统是否支持NSPopover
?
答案 0 :(得分:38)
你可以做到
if ([TheWantedClass class]) {
// The class exists so run code
} else {
// The class doesn't exist so use an alternate approach
}
或
if (NSClassFromString(@"TheWantedClass") != nil) {
// The class exists
} else {
// The class doesn't exist
}
https://developer.apple.com/documentation/foundation/1395135-nsclassfromstring