Run React Native App on iPad or any other iOS Simulator

To run a React Native App on iPad or any other iOS Simulator, the React Native Docs outline using the --simulator flag with react-native run-ios:

npx react-native run-ios --simulator="iPad (7th generation)"

List available iOS Simulators:

xcrun simctl list devices

At the time of authoring this note, there is no way to set a default device for the Simulator.

Published