React Native 보고서 Cannot initialize a parameter of type'NSArray <id<RCTBridgeModule> 오류 (해결 방안)

최근 오래된 RN 프로젝트를 실행할 때 Xcode를 사용하여 실행할 때 다음과 같은 코드 오류가 발생했습니다.
Cannot initialize a parameter of type 'NSArray> *'
                with an lvalue of type 'NSArray *__strong'
Cannot initialize a parameter of type 'NSArray *'
                with an lvalue of type 'NSArray> *__strong'
Cannot initialize a parameter of type 'NSArray> *'
                with an rvalue of type 'NSArray *'
이것은 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<RCTBridge Module> 오류 (해결 방안)에 대한 이 글을 소개합니다. 더 많은 React Native 오류 내용은 이전 글을 검색하거나 아래의 관련 글을 계속 훑어보십시오. 앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기