命令行启动xcode 模拟器

Xcode允许使用xcrun命令运行模拟器
1、列出你安装的所有可用的设备
xcrun instruments -s

2.开启指定模拟器
xcrun simctl boot <路径>
eg:
xcrun simctl boot 0C4B3D70-7407-4EB1-A03C-F7D165FBBEDC

使用的Xcode的simctl命令来控制模拟器
1、安装指定的app
xcrun simctl install booted
2、运行指定的app (com.example.app)
xcrun simctl launch booted
3、卸载指定的应用
xcrun simctl uninstall booted

你可能感兴趣的:(iOS)