본문 바로가기
프로그래밍/React Native

[React Native] 명령어로 실행시, iOS Simulator 설정

by CaffeLatte 2022. 2. 1.

간단하지만 몰라도 Xcode에서 직접 실행해도 된다

하지만 우리는 명령어로 실행시키고 싶기 때문에,

우선 Simulator의 종류를 찾아보자.

 

Xcode를 실행 후

Window > Devices and Simulators를 선택하면 새로운 창이 뜨고

Simulators 탭을 클릭하면 여러 종류가 있는 것을 확인할 수 있다

명령어로 실행시키고 싶은 Simulator를 마음속으로 정한 후

package.json의 기본 설정에 보면 scripts에 ios부분이 있다

"scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios --simulator \"iPhone 12\"",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint ."
  }

"ios": "react-native run-ios --simulator \"iPhone 12\"",

이렇게 run-ios 뒤에 원하는 simulator를 입력해서 명령어를 실행시켜주면 된다

쉽다.

 

끝.

댓글