Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,iOS 7 中有一个新类在 iOS 6 中不存在。我想使用这个新类。我的应用程序必须与 iOS 6 保持兼容。所以我在一些地方读到,你现在可以这样做:
if ([NSURLSessionConfiguration class]) { // only in iOS 7 } else { // do it iOS6 way }
在任何 iOS 6 版本中这样做是否安全,还是应该继续使用NSClassFromString?
NSClassFromString
这是检查某些类是否可用的正确且推荐的方法。