如何[fetchedResultsController sectionIndexTitles]
在不更改代码的情况下查看调试器中的值?
return [fetchedResultsController sectionIndexTitles];
目前,我习惯于添加一个临时变量s
,然后使用“打印's'的描述”命令。但是这种方法需要我改代码,不方便。
NSArray *s= [fetchedResultsController sectionIndexTitles];
return s;
类似地,能够[a method1]
在以下语句中看到 的值将非常有帮助:
[b [a method1]]