标签: xcode debugging uitableview lldb
在Xcode中,我想使用lldb在方法tableView:cellForRowAtIndexPath:中对特定表行请求进行断点:
tableView:cellForRowAtIndexPath:
例如,假设我想在第{44}行的第44行断点。我怎么能这样做?
答案 0 :(得分:1)
使用Condition字段,输入以下条件:
Condition
调试器将在indexPath.row == 44停止。
indexPath.row == 44
请注意,另一种方法是将Ignore字段值设置为44。但是,这并不能提供条件在特定indexPath行或部分停止的灵活性。
Ignore
44
indexPath