How to change the text of a BarButtonItem on the NavigationBar?

℡╲_俬逩灬. 提交于 2019-12-05 01:07:44

I resolved it. The key was I was setting the identifier of the Edit button to a system value (e.g. UIBarButtonSystemItemEdit) and you can't change the text of those (makes sense now). I changed the identifier back to Custom and setting .Title worked fine.

Why don't you try changing the navigationItem.rightbarButtonItem property ?

1. Set up two buttons, one for edit and one for done

 UIBarButtonItem*editButton=[[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStylePlain target:self action:@selector(editAction)];

 UIBarButtonItem*doneButton=[[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:@selector(doneAction)];

2. And wherever necessary, in editAction preferrably change the rightBarButtonItem like:

self.navigationItem.rightBarButtonItem=doneButton;

And if you need the editButton back

 self.navigationItem.rightBarButtonItem=editButton;
if ([self.navigationItem.rightBarButtonItem.title isEqualToString:@"Edit"]) 
{
    self.navigationItem.rightBarButtonItem.title= @"Done";
}

hope this helps. happy coding :)

Works for me like this as UIBarButtonItem *btnEdit; is class memember in .h;

btnEdit = [[UIBarButtonItem alloc]initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(btnEditClicked)];
self.navigationItem.leftBarButtonItem = btnEdit;
//[btnEdit release];

Now selector called would be:

-(void)btnEditClicked
{
  if([btnEdit.title isEqualToString:@"Edit"])
  {
    [btnEdit setTitle:@"Done"];
  }
  else
  {
    [btnEdit setTitle:@"Edit"];
  }
}

Control drag from bar button to file (using assistant editor), create outlet (in this case, its called "barButton". Then, add this:

Swift 3.0:

self.barButton.title = "New title"

Re-new the button like below . .

self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "title", style: UIBarButtonItemStyle.plain, target: self, action: #selector(actionMethod))
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!