在iOS上运行我的React Native应用程序时收到警告:
未导出类RCTCxxModule。你忘了使用RCT_EXPORT_MODULE()吗?
我该如何解决这个问题?
答案 0 :(得分:8)
这种情况发生在RN 0.55.3,可能还有更新的版本。
目前它不是最好的解决方案,但为了避免警告,我们可以忽略它:
import { YellowBox } from 'react-native';
YellowBox.ignoreWarnings(['Class RCTCxxModule']);
答案 1 :(得分:0)
使用此方法无需导入YellowBox。标题中没有任何依赖性和声明,只需输入:
console.disableYellowBox = true;
构造函数中的这一行。
constructor(props) {
super(props);
this.state = {
}
console.disableYellowBox = true;
}