UIBarButtonItem 不起作用
我在运行时更改了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用这个
Use this