我正在尝试导入#import&它给了我以下错误:
宣布' objc_property_t'必须从模块' ObjectiveC.runtime'在需要之前
以下是代码:
#import <Foundation/Foundation.h>
#if TARGET_IPHONE_SIMULATOR
#import <objc/objc-runtime.h>
#else
#import <objc/runtime.h>
#import <objc/message.h>
#endif
请注意:对于Device,它已成功编译。它仅为Simulator生成错误。这是因为我开始使用XCode 9.对于XCode 8,它工作正常。