Question

I have a UIBarButton in a Navigation Bar (the VC is embedded within a Navigation Controller). In IB I set the button with an Identifier:

Bar Button in Navigation Bar Attributes Inspector

How do I set this Attribute from code?

Was it helpful?

Solution

You should be able to set it like

UIBarButtonItem *trashButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target:self action:nil];

Check out the Apple Documentation for this here

Unfortunately, Apple only allow you to set this when you initialize the UIBarButtonItem there isn't a property to set this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top