我正在关注本机模块 ios官方文档中发布的示例。我已经设置好一切,构建它并运行应用程序。
// CAL.h
#import <React/RCTBridgeModule.h>
@interface CAL : NSObject <RCTBridgeModule>
@end
// CAL.m
#import <React/RCTLog.h>
#import "CAL.h"
@implementation CAL
RCT_EXPORT_MODULE(CAL);
RCT_EXPORT_METHOD(createCalendarEvent:(NSString *)name location:(NSString *)location)
{
RCTLogInfo(@"Pretending to create an event %@ at %@", name, location);
}
@end
但是当我从 react-native 检查 NativeModules 时,它显示一个空对象 - {}。
我不确定我错过了什么。