// // define.h // xf_native_plugin // // Created by 张丰 on 2023/6/27. // #ifndef define_h #define define_h #define BLOCK_EXEC(block, ...) if (block) { block(__VA_ARGS__); }; typedef void (^XFNativeBlock)(id result); #import "YYModel.h" #import "NSString+XF_Ext.h" #endif /* define_h */