如何在iOS模拟器中直接运行应用程序时查看日志?

时间:2016-11-07 01:15:34

标签: xcode ios-simulator

我想直接在iOS模拟器中运行应用程序并查看从NSLog发出的日志(而不是从Xcode运行应用程序)。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:5)

根据运行时版本,您可以使用以下之一:

xcrun simctl spawn booted syslog -w
xcrun simctl spawn booted log stream
tail -F "$(xcrun simctl getenv booted SIMULATOR_LOG_ROOT)/system.log"

如果你在macOS Sierra上,你也可以从Console.app中选择模拟设备来查看日志。