saturngod
saturngod

Reputation: 24949

UIBarButtonItem is not working

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

Answers (1)

Gyani
Gyani

Reputation: 2241

Use this

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

Upvotes: 1

Related Questions