I have the following code:
UIBarButtonItem *promoteButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStyleBordered target:self action:@selector(promoteToInstagram:)];
[promoteButton setTitle:@"Promote"];
self.navigationItem.rightBarButtonItem = promoteButton;
I am trying to create a UIBarButtonItem with a custom title. Why does the above says cancel instead of Promote?
Any idea on how to fix this?
Use the correct initializer, perhaps?