Initialize your UIBarButtonItem as follows:
_smay = [[UIBarButtonItem alloc] initWithTitle:@"Your Title" style:UIBarButtonItemStyleBordered target:self action:@selector(yourMethod)]; self.navigationItem.rightBarButtonItem = _smay;
Then, if you want to change the header somewhere else in your code:
[_smay setTitle:@"Your Other Title"];
IOS 8 and above
UIBarButtonItemStyleBordered is deprecated, so use below.
[[UIBarButtonItem alloc] initWithTitle:@"Your Title" style:UIBarButtonItemStylePlain target:self action:@selector(yourMethod)];
source share