Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 652 Bytes

杂记-01.xcode模拟器管理.md

File metadata and controls

37 lines (26 loc) · 652 Bytes

xcode模拟器

一、Xcode允许我们使用xcrun命令运行模拟器

1、列出你安装的所有可用的设备

xcrun instruments -s

2、开启指定模拟器(上面的列表就是可用模拟器名称)

xcrun instruments -w "iPhone 8 (11.2)"

二、使用的Xcode的simctl命令来控制模拟器

1、安装指定的app

xcrun simctl install booted <app路径>

2、运行指定的app (com.example.app)

xcrun simctl launch booted <app identifier>

3、卸载指定的应用

xcrun simctl uninstall booted <app identifier>

作者:hazer
时间:2018-6-2
简介:xcode模拟器简单使用