Yes we all know navigationController?.pushViewController(vc, animated: true) used for pushing controller. I want to ask is there any way that we can jump to ViewController on debugging?
For ex. -
func jump() {
let vc = ViewController(nibName: "ViewController",bundle: nil)//here breakpoint set
//navigationController?.pushViewController(vc, animated: true)
}
can we uncomment pushViewController dynamically (using debugging or any technique.)?