Xcode调试不会打印对象的所有字段

时间:2016-03-16 02:35:00

标签: ios xcode

我在下面的代码中有indexPath类型NSIndexPath

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

在调试器中,indexPath不显示某些字段,如section或row 它会尝试pop,但会显示

(lldb) p indexPath.row  
error: property 'row' not found on object of  
type 'NSIndexPath *' error: 1 errors parsing expression   

(lldb) po  
indexPath.row error: property 'row' not found on object of type  
'NSIndexPath *' error: 1 errors parsing expression

po indexPath  
<NSIndexPath: 0xc000000000200416> {length = 2, path = 4 - 1}

我该怎么做才能启用它?任何帮助,将不胜感激。 enter image description here

1 个答案:

答案 0 :(得分:3)

po通常用于打印对象描述

有关价值,请尝试使用pp indexPath.row