本文介绍了无法在控制台(调试区域)中使用po命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

突然我开始随机收到此消息(但很多时候)

Suddenly I have started to get this message randomly ( but pretty much often)

当我尝试在控制台中键入以下内容时:

when I try to type something like this in console:

po myObject

因此,控制台仅在上面打印消息,而不是给我一些有用的信息……如何解决此问题以及导致该问题的原因?

So, the console prints only message above, rather than it gives me something useful... How to fix this, and what caused it?

推荐答案

lldb在Xcode 10.2中已更改. Apple建议使用"p"或更新的"v"来查看变量的值.

lldb has changed in Xcode 10.2. Apple recommends use of 'p' or more recently 'v' to view the values of variables.

摘自 Xcode 10.2发行说明

LLDB教程部分中,也对此有很好的信息. >检查堆栈框架状态.

(lldb) frame variable -o self 
(SKTGraphicView *) self = 0x0000000100208b40 
<SKTGraphicView: 0x100208b40>

这篇关于无法在控制台(调试区域)中使用po命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 20:14