性能数据获取

xcode获取

打开xcode工程目录 -> Product -> Profile -> select one template -> start record,即可看到相关的性能数据

 

命令行抓取(instruments)

-t 指定模板,可通过instruments -s获得,或者通过:1. 打开xcode工程目录 -> Product -> Profile,来查看
-w 指定设备,即udid,可通过instruments -s或idevice_id -l获得
-l 时间,单位:ms
application app的包名,
例:
instruments -t “Leaks” -w uuid -l 1000 com.HelloWorld

你可能感兴趣的:(性能数据获取)