是否可以在每次更改时在控制台中打印变量值,以及最方便的方法是什么?
编辑: 我想跟踪UINavigationController的控制器堆栈的值
答案 0 :(得分:3)
您可以使用cin.get(); //Meant to keep the terminal open.
属性观察者,例如:
get()
答案 1 :(得分:3)
要观察UINavigationController堆栈,请使用UINavigationControllerDelegate
。
func navigationController(navigationController: UINavigationController, didShowViewController viewController: UIViewController, animated: Bool) {
// print the stack now.
}