react-native cli 로 프로젝트를 생성한 뒤 파인더로 가서 ios 폴더로 들어간 후 kundera.xcworkspace 를 클릭해 xcode를 실행해 준다.
npm run ios
를 하면 에러가 뜬다.
Could not find "Podfile.lock" at /Users/zowan/Documents/react-native/kundera/ios/Podfile.lock. Did you run "pod install" in iOS directory?
ios 폴더로 가서 pod install 을 해줘야 되는데 그러면 에러가 뜬다.
error: SDK "iphoneos" cannot be located
xcode 를 인식하지 못해서 뜨는 에러. 다음 코드를 터미널에 입력한다.
sudo xcode-select --switch /Applications/Xcode.app
그다음 ios 폴더에서 pod install 하면 npm run ios 실행된다.