I placed a breakpoint next to a line of code. I would like to see which lines in my app the compilers will compile next. For example I have this function:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.navigationController?.pushViewController(UIViewController(), animated: true)
}
I put a breakpoint inside the function. When I run the app, the compiler stops at the breakpoint. How do I know which lines in my code the compiler will get to next? I understand that there is "Step over" and "Step" into, but I don't think this is what I am looking for. I am trying to debug my app to figure out the cause of a glitch.