Tagged Questions
The uibarbuttonitemstyle tag has no wiki summary.
4
votes
1answer
534 views
Explain this margin logic for leftBarButtonItem, rightBarButtonItem, titleView
Can anyone explain to me where the margins you see in this screen shot below are coming from? I want the red, green and blue rectangles to all fit next to each other in both screen layouts, landscape ...
4
votes
1answer
5k views
iPhone UIBarButtonItem with custom view but also having a UIBarButtonItemStyle
I am creating a UIBarButtonItem with a custom view in order to achieve a transition to a UIActivityIndicatorView as described here - however I really want my button to retain a normal ...
3
votes
0answers
137 views
UIBarButtonItemStyleDone background image using the iOS 5 appearance API
How can I provide a visually distinct bar button item background image for bar buttons with the UIBarButtonItemStyleDone style and the editing state of the Edit/Done button? None of the documented ...
2
votes
1answer
1k views
UIBarButtonItemStyleDone does not create blue buttons in navigation bar when controller is pushed
I've searched around on several different forums and can't seem to find an answer for this. I have added a bar button item to a navigation controller and set its style to UIBarButtonItemStyleDone. ...
1
vote
2answers
2k views
How do I make a UIBarButtonItem 'glow'?
In the Maps app, when you press the tracking button in the lower left hand corner, it glows showing that it's pressed. This makes it behave like a radio button, and it will un-glow once you move the ...
1
vote
1answer
1k views
Which is the tintColor of UIBarButtonItem with UIBarButtonItemStyleDone?
I would like to use a UISegmentedControl with two buttons as a replacement for a single 'Done' button. To achieve this, I need to know the tintColor of UIBarButtonItems with UIBarButtonItemStyleDone.
...
0
votes
2answers
527 views
Create a UIBarButtonSystemItem with UIBarButtonItemStyle
I want to create a system UIBarButton, but I want it to have plain style.
I've tried with this code, but the style is ignored.
What's wrong with it?
UIBarButtonItem *search = [[UIBarButtonItem ...
0
votes
1answer
68 views
How can I change the image of a UIBarButtonImage that is added in IB?
I have added a UIBarButtonItem in IB. I am trying to change its image to a custom maximize/minimize graphic. How can I change the button's image in the viewDidLoad method? Is there a default ...
0
votes
2answers
776 views
iphone: add UIBarButtonItem to UIViewController's UINavigationItem.leftBarButtonItem - weak?
I use in my application a tabbar controller and under the first tab is a navigationcontroller.
The rootview of the navigation controller stack shows a searchbar to the user, where he can input text. ...
0
votes
1answer
300 views
UIBarButtonItem Not shown
I have a ModalViewController called "takeAction". I am trying to load a uibarbutton in takeAction when the modalviewcontroller(MVC) is presented to the user. So that, the uibarbutton is asynchronous ...
0
votes
1answer
474 views
Iphone create uibarbutton without interface builder
i want creating uibarbutton without interface builder = (whit code)
and this button is style camera
please help me
0
votes
2answers
4k views
Customize UIBarbuttonitem with Background Images
I have added an instance of UIToolbar and buttons on top of it . Each button's belongs to the class of UIBarButtonItem.
My Requirement is that each button has a customized layout , i dont want to use ...
0
votes
3answers
881 views
How to set the button created in the navigation bar as custom in iphone?
I am new to iphone development.I have created a UIBarButtonItem on the navigation bar.I want to set the proper to custom. There is no property as custom for "style:" attribute.Please help me ...
0
votes
1answer
559 views
Unwanted Edit button in my navigation bar?
I've got the following code in my app to display a modal view:
InfoTableViewController *infoTableViewController = [[[InfoTableViewController alloc] initWithNibName:nil bundle:nil] autorelease];
...
-3
votes
2answers
106 views
UIBarButtonItem on navigation bar with UIBarButtonItemStyleDone style doesn't show in blue color
I have a done button on navigation bar, I want to have it shown as blue. But just doing the following seems doesn't help. What am I missing here? I know that if the navigation bar is in black color, ...