如何仅调试我在Xcode中编写的代码?

时间:2019-01-18 20:24:14

标签: xcode debugging

我正在用Xcode调试我的应用程序,但是它变得很难做,因为它还在调试一些我未编写的代码,并且花费了很长时间:

enter image description here

我想从调试中排除所有这些代码行。

有什么想法吗?

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  CG.setId(indexPath.row) //I want to start to debug the app from this line
  performSegue(withIdentifier: "sgShowIssue", sender: self)
}

1 个答案:

答案 0 :(得分:2)

如果您发现自己在这样的汇编代码中,则可以使用“ Step Out”调试控件来回退调用堆栈:

Step Out debug control

通常,您可以通过使用Step-Over控件避免陷入不想看到的代码:

enter image description here