1
sudo gem install cocoapods
cs


cocoapods 설치한다. 




1
react-native init PodTest
cs




해당 프로젝트/ios 폴더로 이동한후 pod init  명령어를 실행한다. 





편집기를 이용하여 Podfile 파일을 아래와 같이 편집한다.



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
 
target 'PodTest' do
  pod 'React', :path => '../node_modules/react-native'
  pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
end
 
post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == "React"
      target.remove_from_project
    end
  end
end
cs



pod install 명령어를 실행하면  target "프로젝트명" 하위에 입력된 라이브러리가 설치된다.



프로젝트명.xcworkspace 파일이 생성되면 정상적으로 실행된것이다. 




출처 : 스튜디오 그로테스큐 강좌 

https://zeddios.tistory.com/25

https://cocoapods.org/

https://d2.naver.com/helloworld/444849

https://comxp.tistory.com/333

블로그 이미지

클라인STR

,