接收 UINavBar 项目操作

发布于 2024-10-16 15:17:15 字数 533 浏览 2 评论 0原文

- (void)viewDidLoad
{
    //So I created a NavBar Item in my detail view

    UIBarButtonItem * saveButton =
    [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
                                                    target:self            
                                                    action:@selector(saveFunc)];
    self.navigationItem.rightBarButtonItem = saveButton;
}

我想编写一些代码来在用户单击导航栏中的保存按钮时保存数据。我该如何编写这个方法。我被困住了,当我通过界面生成器创建导航栏项目时,我做到了这一点,但当我通过代码创建按钮时,我遇到了麻烦。

- (void)viewDidLoad
{
    //So I created a NavBar Item in my detail view

    UIBarButtonItem * saveButton =
    [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
                                                    target:self            
                                                    action:@selector(saveFunc)];
    self.navigationItem.rightBarButtonItem = saveButton;
}

I want to write some code to save the data when the user clicks the save button in the NavBar. How do I write the method for this. I am stuck I did it when I created a navBar item through interface builder but I am having troubles doing it when I create the button through code.

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

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

发布评论

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

评论(1

微凉徒眸意 2024-10-23 15:17:15

现在只需实现该方法

-(void)saveFunc

并且不要忘记添加:

[保存按钮释放];

now just implement the method

-(void) saveFunc

and dont forget to add:

[saveButton release];

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