我无法在 UINavigationController 中添加 UIBarButtonItem

发布于 2024-10-10 00:51:39 字数 440 浏览 0 评论 0原文

navigator=[[UINavigationController alloc]initWithRootViewController:contacts];


UIBarButtonItem *nextButton = [[UIBarButtonItem alloc]
       initWithTitle:@"Delete"
       style:UIBarButtonItemStyleBordered
       target:self
       action:@selector(makeCall)];

[[self.navigator navigationItem] setLeftBarButtonItem:nextButton];


[nextButton release];

我无法在 UINavigationController 中添加 UIBarButtonItem,请帮助

navigator=[[UINavigationController alloc]initWithRootViewController:contacts];


UIBarButtonItem *nextButton = [[UIBarButtonItem alloc]
       initWithTitle:@"Delete"
       style:UIBarButtonItemStyleBordered
       target:self
       action:@selector(makeCall)];

[[self.navigator navigationItem] setLeftBarButtonItem:nextButton];


[nextButton release];

I am not able add UIBarButtonItem in UINavigationController ,please help

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

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

发布评论

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

评论(1

如果没结果 2024-10-17 00:51:39

在这里即兴发言,也许不是

[[self.navigator navigationItem] setLeftBarButtonItem:nextButton];

用来

self.navigator.navigationBar.items = [NSArray arrayWithObject:nextButton];

做你想做的事。

Speaking off the cuff here, perhaps instead of

[[self.navigator navigationItem] setLeftBarButtonItem:nextButton];

use

self.navigator.navigationBar.items = [NSArray arrayWithObject:nextButton];

to do what you want.

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