I’m doing something wrong. I have added an expression, I can see the expression with the “E” symbol in the Debug area, but the expression is not being evaluated, its value is not displayed there (it is in scope at that time).
When I use the debugger (lldb) directly, it works well.

Xcode 4.3.2.
What should I do?
Thanks
You are trying to evaluate a boolean and print it as an object.
You want to use
print [self isEditing]orprint (BOOL)[self isEditing], depending upon whether the debugger complains that it doesn’t know the type of the member or not.The
pocommand prints an object description, not an arbitrary value, and should only be used when the result of the expression on the right is an object, such aspo self.The same problem occurs in the expression editor. If you use the expression
[self isEditing], the debugger won’t understand it. However, if you use(BOOL)[self isEditing], it will display correctly.