Reputation: 24949
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?
Upvotes: 0
Views: 830
Reputation: 2241
Use this
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:nil];
Upvotes: 1