如何在导航栏中使用右侧导航按钮设置自定义方法

发布于 2024-09-26 04:39:52 字数 652 浏览 3 评论 0原文

我想使用 RightNavagation 按钮设置我的自定义方法“Home”,我该怎么办? 我的代码

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home:)];

[barButton setImage:[UIImage imageNamed:@"home_btn.png"]];
[self.navigationItem setRightBarButtonItem:barButton];

知道我想将此方法与其链接。

-(IBAction)home{

   MainViewController *main=[[MainViewController alloc]
                           initWithNibName:@"MainViewController" bundle:nil];
   [self.navigationController pushViewController:main animated:YES];
}

我应该怎么做,请帮助我。

I want set my custom method "Home" with RightNavagation button how should I?
My code

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home:)];

[barButton setImage:[UIImage imageNamed:@"home_btn.png"]];
[self.navigationItem setRightBarButtonItem:barButton];

Know I want to link this method with it.

-(IBAction)home{

   MainViewController *main=[[MainViewController alloc]
                           initWithNibName:@"MainViewController" bundle:nil];
   [self.navigationController pushViewController:main animated:YES];
}

how should I Do this please help me out.

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

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

发布评论

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

评论(2

花辞树 2024-10-03 04:39:52

尝试

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home:)];

改变

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home)];

Try to change

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home:)];

in

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"DontWorryAboutThis" style:UIBarButtonItemStylePlain target:self action:@selector(home)];
梦途 2024-10-03 04:39:52

将您的选择器 @selector(home:) 与您的操作进行比较 -(IBAction)home

看到操作中缺少的冒号吗?
将你的动作改为

- (IBAction)home:(id)sender

compare your selector @selector(home:) with your action -(IBAction)home

See the missing colon in your action?
Change your action to

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