0

我无法使用导航控制器控制视图控制器上的某些变量。因此,当我按下后退按钮时,我想在该视图控制器上运行一个方法(函数),然后再转到前一个视图控制器。

4

1 回答 1

1

You can either define a custom action for the back button, run your code, and then call [UINavigationController popViewController:animated:], or you can set your code in -viewWillDisappear: if that's appropriate for what you're doing.

于 2012-11-19T17:15:25.013 回答