ios 프로젝트 열기

Tags

RN 프로젝트 생성 (없다면)

  • RN Cli 프로젝트를 생성하면 기본적으로 android, ios 폴더가 생성되는데, 여기의 ios 폴더를 이용할 거다
  • 따라서 RN Cli 프로젝트가 이미 있어야 한다.
# 최신 버전으로 하고 싶을 시 $ npx react-native@latest init <프로젝트명> --template react-native-template-typescript # 특정 버전으로 하고 싶을 시 $ npx react-native@<버전명> init <프로젝트명> --template react-native-template-typescript $ npx react-native@0.66.0 init <프로젝트명> --template react-native-template-typescript

ios 프로젝트 열기

notion image