我想直接在iOS模拟器中运行应用程序并查看从NSLog发出的日志(而不是从Xcode运行应用程序)。我怎样才能做到这一点?
答案 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中选择模拟设备来查看日志。