是否有一个预编译器指令来检查框架是否链接到 Obj-C/Cocoa 项目中?
例如,我有一类有用的类别和一些 MapKit 类别。但是,如果 MapKit 未链接到框架,则这些类别将无法编译。
有没有类似的东西:
#ifdef MAPKIT
....
// Only compiles if MapKit framework is linked to the current project
....
#endif
是否有一个预编译器指令来检查框架是否链接到 Obj-C/Cocoa 项目中?
例如,我有一类有用的类别和一些 MapKit 类别。但是,如果 MapKit 未链接到框架,则这些类别将无法编译。
有没有类似的东西:
#ifdef MAPKIT
....
// Only compiles if MapKit framework is linked to the current project
....
#endif