How to launch an iOS simulator app from the command line

476 Views Asked by At

Is there a way to launch an app on the iOS simulator from the command line, like

simctl launch <app-package>

or something like that?

1

There are 1 best solutions below

0
Rajesh Chaudhary On

To install your app: xcrun simctl install booted

To launch the app: xcrun simctl launch booted

Hope this helps.