我正在尝试将后退按钮设置为UIBarButton
,但IBAction
无法正常工作。我不确定出了什么问题。
任何人都可以告诉我。
-(IBAction)back:(id)sender {
// Tell the controller to go back
[self.navigationController popViewControllerAnimated:YES];
}
答案 0 :(得分:0)
只需用以下方法替换你的后方:
-(IBAction)back:(id)sender {
// Tell the controller to go back
[self dismissModalViewControllerAnimated:YES];
}
希望你的问题得到解决。
享受...... !!!