Is it possible to have a red UIBarButtonItem?
|
If anyone is looking for code to exactly duplicate a simple UIBarButtonItem:
And delete.png is:
|
|||||||||||||||||
|
|
You can create custom UIButton with your desired look and initialize your UIBarButtonItem with it as a custom view.
|
|||
|
|
Why not just :
(on sdk 4.* , ios 5 and up) |
||||
|
see http://www.iphonedevsdk.com/forum/iphone-sdk-development/33286-color-image-uibarbuttonitem-uitoolbar.html which helped me... |
|||||
|
|
You can set the tintColor property of a UIBarButtonItem in iOS 5. If you need to support iOS 4, check out this blog post. It details using a UISegmentedControl styled to look like a single button. |
|||
|
|
|
Using a custom image doesn't work as it just uses the alpha to render the button. |
|||
|
|
|
Okay, there is actually a much better solution to this, in my opinion, which involves less code and uses the native UI controls. The trick is to use a UISegmentedControl, and remove all the segments except one. (Can't be done in IB, has to be done programmatically). Once you've done that, you set the tint colour, then create a UIBarButtonItem passing it the UISegmentedControl as a custom view. This guy's used the technique to create a category of UIBarButtonItem which works brilliantly: http://fredandrandall.com/blog/2011/03/31/how-to-change-the-color-of-a-uibarbuttonitem/ |
|||
|
|
You can create a custom image for the button and use that. Else, if you have set the tintColor of your navbar or toolbar to red, the button items on these will also appear red. |
|||
|
|
|
If its the UIBarButtonItem of a UIToolbar set this before your implementation in the file you want this code
Then change the toolbar buttons doing this:
|
|||
|
|
|
If using IB (Interface Builder), drag a |
|||
|
|
|
I wanted to add something to the highlighted solution. If you do this subclassing, it will not execute storyboard-defied segues and selectors that are assigned to the UIBarButtonItem. Further, the 'target' and 'action' properties are not set in the UIBarButtonItem so you can't access them from the subclass and assign them to your UIButton. I worked around this by adding 2 properties to my subclass (using ARC):
Next, in the init of your subclass, add something like this to the accepted answer code:
and a function:
finally, in your main view controller that is hosting all of this, in the 'viewDidLoad', add this:
Hope this helps someone else save time when they start down this path with Storyboards/iOS5 |
|||
|
|
