간단하지만 몰라도 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를 입력해서 명령어를 실행시켜주면 된다
쉽다.
끝.
'프로그래밍 > React Native' 카테고리의 다른 글
[React Native] iOS Multiple commands produce... .ttf 또는 .otf 관련 에러 (0) | 2022.03.10 |
---|---|
[React Native] android react-native-reanimated 에러 (0) | 2022.02.01 |
[React Native] Google AdMob 시작하기 (3) | 2021.07.19 |
[React Native] iOS 실행시 에러(arm64 관련) (0) | 2021.05.09 |
[React Native] .jsx 확장자 사용시 에러 및 설정 방법 (0) | 2021.03.14 |
댓글