UINavigationController 添加右键

发布于 2024-12-02 18:26:54 字数 448 浏览 1 评论 0原文

我知道这个问题被问了很多次,但我没有找到我的情况: 我在主窗口中有 1 个 UINavigationController 。主窗口还包含 UITableView。当我选择行时,NavigationController 用笔尖推送另一个 UIViewController。这个 UIViewController 没有导航控制器,它只包含 UITableView 内部。

这是此 UIViewController 的屏幕截图:

在此处输入图像描述

这不是主窗口。主窗口包含 UINavigationController 和 UITableView。

这里有一个问题:

当我在推送的 UIViewController 中时,如何将 UIBarButtonItem 添加到 NavigationItem 中?

I know this question was asked many times, but I didn't find my situation:
I have 1 UINavigationController in Main window. Main Window сontains also UITableView. When i select row, NavigationController pushes another UIViewController with nib. This UIViewController doesn't have Navigation controller, it contains only UITableView inside.

Here is screenshot of this UIViewController:

enter image description here

This is not Main Window. Main Window contains UINavigationController with UITableView.

And here is question:

How to add UIBarButtonItem into NavigationItem when i'm in pushed UIViewController?

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

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

发布评论

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

评论(3

阳光下的泡沫是彩色的 2024-12-09 18:26:54
UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(saveItem)];

self.navigationItem.rightBarButtonItem = saveButton;
[saveButton release];

将其添加到您的 viewDidLoad 方法中以创建保存按钮。

UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(saveItem)];

self.navigationItem.rightBarButtonItem = saveButton;
[saveButton release];

add this in your viewDidLoad method to create a Save Button.

太阳公公是暖光 2024-12-09 18:26:54

在该详细视图控制器的 .m 文件中,创建一个 UIBarButton 实例并将其设置为 self.navigationItem.rightBarButtonItem。您可以在 init 方法中执行此操作。

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"title"
                                                              style:UIBarButtonItemStyleBordered
                                                             target:self
                                                             action:@selector(someMethod)];
self.navigationItem.rightBarButtonItem = barButton;
[barButton release];

Inside that detail view controller's .m file, create an UIBarButton instance and set it as self.navigationItem.rightBarButtonItem. You can do it in init method.

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"title"
                                                              style:UIBarButtonItemStyleBordered
                                                             target:self
                                                             action:@selector(someMethod)];
self.navigationItem.rightBarButtonItem = barButton;
[barButton release];
还如梦归 2024-12-09 18:26:54

视图控制器仍然包含 UINavigationItem 并且它可以使用,因为您被推入 UINavigationController。

所以你可以简单地在你的 viewDidLoad 方法中执行以下操作

self.navigationItem.rightBarButtonItem = yourBarButtonItem;

The view controller still contains a UINavigationItem and it is usable since you were pushed into a UINavigationController.

So you can simply do the following In your viewDidLoad method

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