导航控制器后退按钮操作

发布于 2024-12-03 05:44:50 字数 473 浏览 0 评论 0原文

我是 iPhone 新手,现在我尝试仅实现后退按钮操作,但我收到信号 SIGABRT 和消息:back2FirstView not found(返回类型默认为 id)。 在头文件中,我有: - (void) back2FirstView; ,.m 中的实现是:

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

后退按钮的操作:

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

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

I'm new on iphone and now I'm trying to implement just a back button action, but I receive the signal SIGABRT with message : back2FirstView not found(return type defaults to id).
In header file I have : - (void) back2FirstView; and the implementation in .m is :

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

and the action for back button :

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

Where is the problem? Please help...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韵柒 2024-12-10 05:44:50

与 Gabrielle 聊天,通过注释掉 back2FirstView 调用并使用 [self.navigationController popViewControllerAnimated:YES]; 解决了问题

-(IBAction)RetourButtonPressed:(id)发送者

操作。

Had a chat with Gabrielle and the problem was solved by commenting out the back2FirstView call and using [self.navigationController popViewControllerAnimated:YES]; in the

-(IBAction)RetourButtonPressed:(id)sender

action.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文