UIBarButtonItem 不起作用

发布于 2024-09-27 05:12:53 字数 347 浏览 7 评论 0原文

我在运行时更改了 UIBarButtonItem 标题,但它不起作用

if(self.toolbarItems!=nil)
    {
        NSArray *toolbaritem=self.toolbarItems;
        UIBarButtonItem* tmpeditButton =[toolbaritem objectAtIndex:0];
        tmpeditButton.title=@"Done";
        NSLog(@"log %@",tmpeditButton.title);
    }

Log 始终显示 NULL 值。为什么以及如何解决这个问题?

I change the UIBarButtonItem title at run time but it does not work

if(self.toolbarItems!=nil)
    {
        NSArray *toolbaritem=self.toolbarItems;
        UIBarButtonItem* tmpeditButton =[toolbaritem objectAtIndex:0];
        tmpeditButton.title=@"Done";
        NSLog(@"log %@",tmpeditButton.title);
    }

Log is always displays the value of NULL. Why and how to fix that?

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

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

发布评论

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

评论(1

深居我梦 2024-10-04 05:12:53

用这个

UIBarButtonItem *barButton = [[UIBarButtonItem  alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:nil];

Use this

UIBarButtonItem *barButton = [[UIBarButtonItem  alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文