UIBarButtonItem class represents an iOS button that can be added to toolbars or navigation bars.
0
votes
1answer
10 views
iOS Custom Font “Floats” Too High
I'm creating a custom UIBarButtonItem, like so:
UIImage *originalImage = [UIImage imageNamed:@"button"];
UIImage *buttonImage = [originalImage stretchableImageWithLeftCapWidth:10 ...
0
votes
3answers
38 views
UIBarButtonItem in footer of tableview, a violation of iOS Human Interface Guidelines?
Does it violate the iOS Human Interface Guidelines if I show a UIBarButtonItem in the footer view of a grouped tableview? Does it depend on the style?
It is quite nice to load a toolbar as the ...
0
votes
1answer
27 views
UIBarButtonItem triggers action only when pressed for long enough
I have a few simple UIBarButtonsItems(no customization other than changing style, color and alpha). Everything was working perfectly fine for some time. But now I need to press BarButton for a long ...
0
votes
1answer
22 views
How to set anchor of popover in footerView of tableview?
I'm developping an iPad App and need to present a popover from a button located in each footer of a grouped tableview with a variable amount of sections (up to 100). How do I set the anchor for the ...
0
votes
2answers
41 views
UIBarButtonItem to open new view when using Storyboard
I need to create the UIToolbar and the UIBarButtonItem programmatically. I'm using Storyboard for the layout.
How is now a new view opened by pressing the toolbar button which was programmatically ...
0
votes
0answers
27 views
Positioning of UIBarButtonItem in landscape orientation
I have an iPad app which, when in portrait, works fine. However, in landscape (even if forced to only use landscape), the UIBarButtonItems I add appear slightly too far to the right, such that they ...
0
votes
3answers
39 views
Customize title attributes of specific back button
The appearance proxy is useful as long as you don't use any UI elements provided by the OS, such as the MFMailComposeViewController class. For this reason, I need to customize the bar button items in ...
0
votes
0answers
16 views
Flip View not working
Having difficulty with my animation working ... Flip View :
what does happen is the screen switches to the second view ... great, and the button text and the text fields slowly move into place, so ...
0
votes
1answer
13 views
Hiding / disabling UIButton and UIBarButtonItem
Really stumped here. I keep reading posts, nothing works and I get more confused.
I have an info button named "info", and a bar button item named "backnav". Given the differences in the fact that ...
0
votes
1answer
30 views
UIBarbutton Item - image selected and un, not shown when called programmatically
It works in selected state, hence when you select either one of the tabs, but when app launched the images are not visible. (I think there seems to be a problem with the unselected state and not the ...
0
votes
1answer
31 views
[UIBarButtonItem _isAncestorOfFirstResponder]: unrecognized selector sent to instance
This code works perfectly in one app and crashes in another with message:
[UIBarButtonItem _isAncestorOfFirstResponder]: unrecognized selector sent to instance
If I comment the magical record code ...
0
votes
1answer
37 views
How does forwardingTargetForSelector: work?
I have a UIBarButtonItem. When it receives a message it cannot handle, I want it to forward that message to a particular view controller.
I thought I might be able to accomplish this using the bar ...
0
votes
2answers
56 views
Change font of back navigation bar button
I want to be able to set the font of my apps navigation bar back button without doing anything too crazy and without losing any other design characteristics of the button (i.e. I want to keep the ...
1
vote
1answer
42 views
how to change the UIBarButtonItem size when rotate from the portrait to landscape?
I add one UISegmentedControl to the navigation bar. When the view loaded in portrait, its frame seems right. but when it rotate to landscape, the UIBarButtonItem becomes larger. If rotate to portrait ...
0
votes
1answer
24 views
Replace backButtonBarItem with leftBarButtonItem
I think this is a really simple task, but I just can't get it.I have a viewcontroller on a storyboard that isn't very complicated. Here's what I want to do:
I want the navigation bar of my view ...
0
votes
1answer
25 views
Show / Hide UIBarButtonItem Depending On If The View Is Empty Or Not
I have a simple iPad project with a view having two containers. When the entries on the left side are selected, the right side gets updated with its details. The right view controller also has ...
3
votes
11answers
232 views
Custom UIBarButtonItems from UIButtons with custom images - is it possible to make the tap targets larger?
I'm making UIBarButtons as follows:
// Create "back" UIBarButtonItem
UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom];
backButton.frame = CGRectMake(0, 0, 28, 17);
[backButton ...
1
vote
2answers
45 views
UIBarButtonItem:setBackgroundVerticalPositionAdjustment not working properly with custom button
I have the following code to customize the display of an UIBarButtonItem (locationButton):
UIButton *locationButtonAux = [UIButton buttonWithType:UIButtonTypeCustom];
[locationButtonAux ...
0
votes
1answer
16 views
ios UIBarButtonItem with UIBarButtonSystemItemCompose showing red button
I am trying to add a UIBarButtonItem with the style of UIBarButtonSystemItemCompose. According to the apple docs it should display a compose icon that consists of a square outline. When I use the ...
0
votes
1answer
58 views
iOS: Can't minimize the keyboard after user types in TextView (xcode)
Another user provided me with the following code in order to make a mini toolbar above the keyboard when a user is typing in a specific TextView. All I need is a little "close" button to minimize the ...
0
votes
1answer
21 views
why UIBarButtonItem default is disable?
I have two projects.
I created one UIBarButtonItem object on the first project. It's enabled by default but in the other project it's disabled by default.
I am using iOS6, Xcode.4.6.1
I see the ...
0
votes
1answer
25 views
How can I make UIBarButtonItem image transparent?
I'd like to use the attached png as an image of an UIBarButtonItem.
I'd like to set its black background as transparent, but I can't find any way to set it as mask color in XCode. How can I make it ...
0
votes
2answers
34 views
UIBarButtonItem action fails with unrecognised selector
I have searched around a lot but couldn't find a solution to my problem. I have a function that I want to call as a selector when one of the UIBarButtonItem is tapped. My UIViewController is embedded ...
0
votes
1answer
45 views
How to set UIBarButtonItem with out border
I have created view with barbutton as follows
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"settingsicon.png"] style:UIBarButtonItemStylePlain ...
1
vote
2answers
71 views
How to set image for UIBarButtonItem Flexible space - IOS
Have a look at this image...
I want to design toolbar like this, Each UIBarButtonItem should be separated by a thin line. So I have inserted flexible space button in between each UIBarButtonItem ...
0
votes
0answers
17 views
UIBarButtonItem attributed title text, or custom fallback font?
I want my normal, bordered, UIBarButtonItem to have both an icon and text in it. I know I could use customView to achieve this, but that would have issues down the road (matching tint color, ...
0
votes
1answer
56 views
UIBarButtonItem: Change title font colour during animation
I've initialized a UIBarButtonItem with a custom UIButton and set it to be the rightBarButtonItem within a navigation controller.
UIBarButtonItem *rightBarButtonItem = [[UIBarButtonItem alloc] ...
0
votes
1answer
90 views
Understanding resizableImageWithCapInsets:UIEdgeInsetsMake?
I dont get the resizableImageWithCapInsets:UIEdgeInsetsMake.
I have an icon that I want as a back button on the nav bar.
It is 23x23 pixels (46x46 retina)..
But if i add 0,0,0,0 into the ...
0
votes
1answer
25 views
Trying to setup a custom backBarButtonItem image / difficulty with resizable image
I am trying to replace the default backBarButtonItem image used by UINavigationControllers in my app. I want to use the following image (actually I am using a white arrow, but that wouldn't show here ...
0
votes
1answer
37 views
Tried to add custom UIBarButtonItem to UIToolBar, but item comes out messed up
I'm trying to add a custom button (shape and color) to my UIToolBar, but it comes out much differently than it should.
What button looks like:
What it looks like in the bar:
Here's the code I ...
0
votes
2answers
39 views
Customizing UIBarButtonItems in various parts of applications (background image and shape)
I want to change the background image of my UIBarButtonItems. In the root view, I want them to be a certain background image (but still rounded-rect buttons) in the nav bar, but in the next view, I ...
0
votes
3answers
53 views
UIBarButtonItem not firing its action method
In viewDidLoad:
- (void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController setNavigationBarHidden:YES animated:NO];
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, ...
0
votes
1answer
71 views
Setting navigation bar back button image
I want to set the back button in my UINavigationBar to this image:
I don't want the image to be embedded in the standard back button image, I just want this image to appear.
I know from looking at ...
0
votes
1answer
56 views
UIBarButtonItem custom view not displaying properly
I'm trying to make an audio player, and have a toolbar on bottom. I programmatically add a barbutton item with a UIImageView as it's customView property, but when the image displays it is barely on ...
0
votes
1answer
51 views
UIBarButtonItem - Make it not clickable when just text
So I have a UIToolbar with 4 UIBarButtonItems on it (2 of them being Flexible Space) the middle one is of Style: Plain with a Title set "Settings" and then the far right button is a 'Done' button to ...
1
vote
1answer
31 views
@Selector not firing in UIBarButtonItem
Context
The app is using a UINavigationController paradigm
I have a class that subclasses 'UIViewController' called: QuestionViewController.
I then have a viewController that subclasses ...
-3
votes
2answers
46 views
Change UIBarButton to Red
I would like to show the EDIT button in red and not the SAVE button as below
UIBarButtonItem *barBtn = [[UIBarButtonItem alloc] initWithTitle:(_isEdit)?
@"Save" : @"Edit" ...
0
votes
1answer
53 views
Subclassing UIToolbar and overriding drawRect: - UIBarButtonItems NOT displaying
Context
I'm using the 'initWithNavigationBarClass' method to initialize a UINavigationController with a custom toolbar, here is the line where I alloc init the UINavigationController
...
0
votes
3answers
50 views
Customization of UIBarButtonItem and interface rotations
There are a lot of talks about customization of UIBarButtonItem with custom view as an UIButton. It's quite clear. What I didn't find so far though, and what surprises me, is that there is no ...
-2
votes
4answers
53 views
Two options bar button item
Maybe not so smart question but how i could make such close to each other, one on - other off type of buttons?
1
vote
2answers
41 views
Show UIDatePicker and its toolbar when clicking on a UIBarButtonItem
In my app's ViewController, I have 3 differents items:
@property (weak, nonatomic) IBOutlet UIBarButtonItem *dateSelect;
@property (weak, nonatomic) IBOutlet UIToolbar *dateToolbar;
@property (weak, ...
0
votes
0answers
55 views
MKUserTrackingBarButtonItem custom action inconsistent behaviour between iPhone and iPad
I'm having an issue setting a custom action on MKUserTrackingBarButtonItem, my method is never called on the iPad, yet it is on the iPhone. This occurs on both the Simulator and the device.
I have ...
0
votes
1answer
75 views
Set a button to right of backbutton of navigation bar iPad monotouch
I want to have a uibarbuttonitem in right of back button in navigation bar ( if it is not wrong with apples guide line). I use this code:
UIBarButtonItem listButton = new UIBarButtonItem ("List ...
0
votes
1answer
43 views
iOS: Different image sizes when app is installed via Xcode or IPA
I'm getting different image sizes in a UIBarButtonItem when I install the same app on the same device through Xcode and through an IPA (iTunes).
As you can see, the image appears to fit in the ...
0
votes
1answer
83 views
JASidePanel iOS: Style Left Button on navbar
so I've been trying to style the left bar button on the navbar.
Mainly the button style I wan't un-styled (the same kinda style as a UIButton style set to custom).
Does anyone know how?
Thank you,
...
0
votes
1answer
117 views
setBackButtonBackgroundImage with weird appearance
using this in AppDelegate.m for my custom NavBar:
UIImage *NavigationPortraitBackground = [[UIImage imageNamed:@"gradient_main"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
...
0
votes
1answer
35 views
UIToolbar - Allow interaction below toolbar
I have a custom UIToolbar in my UINavigationController, with a custom background image.
The image is half transparent on the right. The problem that I'm having is that some views have buttons on the ...
-1
votes
3answers
145 views
UIBarButtonItem Custom view in UINavigationBar
I am making a custom bar buttons for uinavigationbar, I am using following code
UIImageView *backImgView= [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"chk_back.png"]]; [backImgView ...
0
votes
2answers
43 views
a additional BarButtonItem
I just got a little problem. I found this code:
MKUserTrackingBarButtonItem *trackingButton = [[MKUserTrackingBarButtonItem alloc]initWithMapView:self.mapView];
[self.mapToolbar setItems: [NSArray ...
2
votes
2answers
41 views
How to distribute buttons along length in UIToolbar?
In my application, I use some code, to dynamically add buttons with images to a UIToolbar:
[self.navigationController setToolbarHidden:NO];
UIImage *buttonImage1 = [UIImage imageNamed:@"1.png"];
...









