navigationcontroller后退按钮动作

时间:2011-09-07 09:48:21

标签: iphone uinavigationcontroller back-button

我是iphone上的新用户,现在我正在尝试实施一个后退按钮操作,但我收到信号SIGABRT并显示消息:back2FirstView not found(return type defaults to id). 在头文件中,我有:- (void) back2FirstView;,并且.m中的实现是:

- (void)back2FirstView
{
    [navigationController popViewControllerAnimated:YES];
}

以及后退按钮的操作:

-(IBAction)RetourButtonPressed:(id)sender{
    NSLog(@"BTN Retour");
    [boiteAOutilsViewController back2FirstView];
}

问题出在哪里?请帮忙......

1 个答案:

答案 0 :(得分:1)

与Gabrielle聊天,通过注释back2FirstView调用并在

中使用[self.navigationController popViewControllerAnimated:YES];来解决问题
  

- (IBAction)RetourButtonPressed:(id)sender

动作。