可以使用仪器代替
的valgrind
如果想要使用仪器检查内存泄漏是否可以从终端使用?
答案 0 :(得分:16)
Instruments有一个命令行界面:
$ instruments -h
使用示例:
$ instruments -t mytemplate -a myapp.app
对于泄漏,请尝试Leaks.tracetemplate
。要查看所有可用模板,请使用-s
。
还有另一个可执行文件,名为leaks
。您可以通过为leaks
提供PID来检查任何正在运行的应用程序:
$ ps aux | grep "[b]ash" | awk '{print $2}'
620
$ leaks 620
leaks Report Version: 2.0
Process: bash [620]
Path: /bin/bash
Load Address: 0x100000000
...
Process 620: 37983 nodes malloced for 1123 KB
Process 620: 0 leaks for 0 total leaked bytes.
详细了解Apple开发人员reference library中的泄密事项。
答案 1 :(得分:0)
对于Xcode 9,如果您想要分析iOS应用程序,请执行以下示例命令:
instruments -t Zombies -w 'iPhone SE (11.0.1) [XXX] (Simulator)' MyApp.app
仪器命令参考: