質問

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?

役に立ちましたか?

解決

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top