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:
How do I set this Attribute from code?
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:
How do I set this Attribute from code?
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.