为什么此调试器命令有效:
(lldb) **po indexPath**
<NSIndexPath: 0x1c0711b0> {length = 2, path = 3 - 0}
但这不会:
(lldb) **po [indexPath section]**
[no Objective-C description available]
?
为什么此调试器命令有效:
(lldb) **po indexPath**
<NSIndexPath: 0x1c0711b0> {length = 2, path = 3 - 0}
但这不会:
(lldb) **po [indexPath section]**
[no Objective-C description available]
?
对于原始类型,您必须使用 'p' , 'po' 用于对象
p = 打印
po = 打印对象
所以例如
(lldb) p [indexPath section]
因为该部分不是对象,所以它是一个整数。