關於React Native報Cannot initialize a parameter of type'NSArray<id<RCTBridgeModule>>錯誤(解決方案)

最近,在運行一個老RN項目的時候,使用Xcode運行的時候報瞭如下的代碼錯誤:

Cannot initialize a parameter of type ‘NSArray<id<RCTBridgeModule>> *’
                with an lvalue of type ‘NSArray<Class> *__strong’
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 rvalue of type ‘NSArray<Class> *’

這是由於升級XCode 12.5之後的問題,在ios/Podfile文件中加入如下的腳本即可。

post_install do |installer|
## Fix for XCode 12.5
  find_and_replace(
  "../node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm",
  "_initializeModules:(NSArray<id<RCTBridgeModule>> *)modules", 
  "_initializeModules:(NSArray<Class> *)modules")
  
  find_and_replace(
  "../node_modules/react-native/ReactCommon/turbomodule/core/platform/ios/RCTTurboModuleManager.mm",
  "RCTBridgeModuleNameForClass(module))", 
  "RCTBridgeModuleNameForClass(Class(module)))"
  )
end

def find_and_replace(dir, findstr, replacestr)
  Dir[dir].each do |name|
      text = File.read(name)
      replace = text.gsub(findstr,replacestr)
      if text != replace
          puts "Fix: " + name
          File.open(name, "w") { |file| file.puts replace }
          STDOUT.flush
      end
  end
  Dir[dir + '*/'].each(&method(:find_and_replace))
end

然後,重新執行pod install 命令安裝即可。

到此這篇關於關於React Native報Cannot initialize a parameter of type’NSArray<id<RCTBridgeModule>>錯誤(解決方案)的文章就介紹到這瞭,更多相關React Native報錯內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: