0

我正在关注本机模块 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 时,它显示一个空对象 - {}。

我不确定我错过了什么。

4

1 回答 1

0

就像提到的@chengsam 一样,当我以以下方式直接访问 CAL 时,它可以工作。

const { CAL } = NativeModules; 或者 NativeModules.CAL

CAL 仍然持有原生模块,而 NativeModules 直接显示 {}

于 2021-10-20T10:15:13.333 回答