Mar*_*oet 7 xcode react-native xcode12
我的本机应用程序之前在 xcode 11 中构建并在模拟器上运行。但是,自从升级到 xcode 12.5 后,我收到以下构建错误
Cannot initialize a parameter of type 'NSArray<id<RCTBridgeModule>> *' with an rvalue of type 'NSArray<Class>*'
Cannot initialize a parameter of type 'NSArray<Class> *' with an lvalue of type 'NSArray<id<RCTBridgeModule>> *__strong'
Cannot initialize a parameter of type 'NSArray<id<RCTBridgeModule>> *' with an lvalue of type 'NSArray<Class> *__strong'
Run Code Online (Sandbox Code Playgroud)
这些错误来自我的项目中通过 cocoapods 的 react-core。
小智 5
改RCTCxxBridge.mm624线
Code Block Objective-C
NSArray<id<RCTBridgeModule>> *)modules
Run Code Online (Sandbox Code Playgroud)
到
Code Block Objective-C
NSArray<Class> *)modules
Run Code Online (Sandbox Code Playgroud)