我想调试一个在Swift Playground的“ Sources”文件夹内的方法。
public func wannaDebugThis() {
let x = 42
let text = "Debug message with useful information: x = \(x)"
print(text)
}
如this question中所述,在macOS游乐场中,print
输出显示在调试区域中。
但是在iPad上,print
语句似乎被忽略了。即使在Mac上的Console.app中,我也找不到所需的输出。
如何在iPad上编写调试语句以及在哪里找到它们?
答案 0 :(得分:0)
虽然我找不到一种方法来修改“空/空白游乐场”以提供控制台输入/输出。有一个“答案”模板,可用于简单的控制台交互。
另一种方法是使用“交互”模板,该模板在此处提供:https://buildingrainbows.com/2018/03/13/print-to-the-console-in-swift-playgrounds-for-ipad/
答案 1 :(得分:0)
答案 2 :(得分:-1)