The bar of icons in an iOS app.

learn more… | top users | synonyms

0
votes
3answers
32 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
26 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
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 ...
2
votes
2answers
48 views

UIToolbar refuses to move

I've been trying to move my UIToolbar on -(void)viewDidLoad but no matter what I use, it doesn't work. My example code is below: [toolBarView setBounds:CGRectMake(0, 50, 150, 150)]; [toolBarView ...
0
votes
0answers
21 views

UIToolbar Shadow Not Appearing On iPhone

I am adding a toolbar using lazy instantiation and placing it with NSLayout Constraints: Instantiation of Toolbar /** * a toolbar to keep at the top of the view */ - (UIToolbar *)toolbar { if ...
0
votes
1answer
16 views

Issue with CGAffineTransformMakeTranslation on UIButton

I have a problem that I can't explain. I have a viewController with a view. This view contains a UIbutton and a toolbar. Because the toolBar is a parameters bar, I don't want it to be present on my ...
0
votes
1answer
33 views

UINavigationController and UIToolBar not working in iOS 6

I am working on iPad app in which click event of UINavigationController and UIToolBar is working fine in iOS 5 but, It is not working in iOS 6. My code: self.window.rootViewController=navCon; ...
3
votes
11answers
230 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 ...
0
votes
1answer
53 views

Best way to implement UIToolbar with UITextField above keyboard

What is the best way to have a UIToolbar with a UITextField appear above the keyboard ? In particular, I'm looking for a way to implement this in iOS 6. The basic functionality I am trying to ...
1
vote
2answers
70 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
19 views

UICollectionViewCell size reduced when showing UIToolbar

For some reason when displaying my UINavigationController's toolbar, my UICollectionView cells are reduced in height. If I set the barStyle of the toolbar to translucent, it appears to work fine, ...
1
vote
1answer
55 views

Phonegap IOS toolbar

I am developing an iOS app using phonegap. I need to create a UIToolbar to show some icons at top of the app as in Facebook app. Is there any phonegap plugin available? Thanks in advance.
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 ...
2
votes
1answer
49 views

What is the correct approach for a custom UIToolBar?

Is it better - better in the sense of not getting rejected from the Apple store - when trying to create a custom* UIToolbar to either: Option A Add the oversize middle button as a UIButton to the ...
0
votes
3answers
52 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
0answers
29 views

UIToolbar reuse like inputAccessoryView

Some quest! If i have toolbar in view(bottom) and i want that he will become like input accessoryView for textview. It is possible? Or i must use animations core for this manipulation?
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 ...
-1
votes
2answers
74 views

Pop view controller off stack without a navigation bar shown? [closed]

I've hidden the navigation bar so I can have a custom UIToolBar up there, but when I set the action property for the toolbar item to a method that pops it, it won't work, and I think it may be because ...
0
votes
2answers
46 views

How to make UIToolbar's background transparent?

I want to make my UIToolBar have a transparent background (similar to iBooks) but I'm having no luck with setting the translucent property. Here's my code: UIToolbar *toolBar = [[UIToolbar alloc] ...
0
votes
0answers
30 views

How to set UIToolBarPosition Top or bottom

To set UIToolBar background Image I use the below code. UIToolbar *tool=[[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 100.0)]; [tool setTintColor:[UIColor ...
0
votes
4answers
57 views

UIButton hidden behind UIToolbar

Context I've got a UIButton that I'm adding, method is below: [self.view addSubview:[self returnCustomSubmitButton]]; I don't add the toolbar as a subview, I set the ViewControllers ...
0
votes
1answer
26 views

UIToolBar center.y returns value off the screen

I'm doing a NSLog on the self.navigationController.toolbar.center.y of a UIToolBar that is visible. I'm showing the UIToolBar in a UIViewController. This ...
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 ...
0
votes
1answer
52 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
1answer
53 views

When subclassing UIToolBar to have a custom background the bottom half of toolbar is black?

I'm subclassing UIToolBar, here is how I override the drawRect method of UIToolBar: - (void)drawRect:(CGRect)rect { UIImage *backgroundImage = [UIImage imageNamed:@"UIToolBar_Background.png"]; ...
0
votes
1answer
88 views

Set rootViewController of UINavigationController by method other than initWithRootViewController

How Do I set the rootViewController of UINavigationController by a method other than initWithRootViewController? I want use initWithNavigationBarClass:toolbarClass: to deliver a custom toolbar for my ...
0
votes
1answer
51 views

Raising the icons on UIToolbar

UIToolbars normally center their icons vertically. I want to make their icons to be partially outside the bar. See the picture: Is it possible to have control over the buttons Y position, ...
0
votes
1answer
41 views

iOS: UIToolbar setBackgroundImage not working

I can not change the uitoolbar background image. gives error. This navigationBar code is working. UIImage *navBackgroundImage = [UIImage imageNamed:@"bartop.png"]; [[UINavigationBar appearance] ...
0
votes
1answer
29 views

Add toolbar to parent View controller in containment view controller

i have two UIViewControllers which are added as child view controllers to the container view controller.Now I want to add UIToolbar to the container view controller.Can anyone suggest me how to add ...
0
votes
1answer
41 views

UIBarButtonItem Appearance for NavigationControl affecting Toolbar

I set a UIAppearance for a UIBarButtonItem in a UINavigationController like this: [[UIBarButtonItem appearanceWhenContainedIn: [UINavigationController class],nil] setBackgroundImage:bimg ...
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 ...
0
votes
1answer
78 views

UIScrollView not displaying

I have a very simple application. There is a toolbar on the top, and the bottom. The bottom toolbar needs to be in a UIScrollView because it's buttons goes off the screen. But when I test my ...
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"]; ...
0
votes
2answers
69 views

How to change width of an item in a UIToolbar when orientation is changed?

Using xCode 4.6, I have a toolbar at the top of my view that contains 2 buttons, followed by a text field and two more buttons after that. I have set the buttons to be equal size and I can drag the ...
1
vote
0answers
29 views

Changing toolbar item from toolbar subclass does not update toolbar immediately

I have a subclass of UIToolbar. I created it because I have the same toolbar on multiple pages(UIViewControllers). I took UIToolbar on my UIViewControllers (I am using storyboards) and assign this ...
0
votes
1answer
18 views

How to split a UIBarButtonItem?

I have a UIToolbar with two UIBarButtonItems ("previous" and "next"), which I use as an inputAccessoryView for my UITextFields. These buttons cycle through the text fields. I have seen in some places ...
0
votes
1answer
77 views

Resize the View inside a UIViewController

I have a UIViewController in a Storyboard app. The Navigation bar is automatically added when a segue is set and I've added a UIToolBar from the IB to the bottom. At runtime a UIScrollView is ...
1
vote
1answer
46 views

picture appears as white space in button

I downloaded from a free icon DB a thumb up icon, its size is too large for a button and it had white background.I decided to open it in pixelmator resized the icon and removed the background. when ...
0
votes
1answer
43 views

UIBarButton Background Image Dispaly Issue

I added a UIToolBar to a UIViewController and added UIBarButton in it, and also added code for display image in background but image is not diplayed here is my code UIBarButtonItem ...
0
votes
1answer
51 views

UILabel on a UIToolbar (programmatically) doesn't display the label

I have the following code which is in -viewDidLoad: : self.navigationController.toolbarHidden = NO; UIBarButtonItem *shareButton = [[UIBarButtonItem alloc] ...
1
vote
3answers
88 views

Adding validation method on the 'Done' button added to the UITextField input method

I am trying to valide the input in the UITextField when the added 'Done' UIBarButtonItem is pressed, but since its target is set to UITextField i am editing, I cannot call the custom validation ...
0
votes
2answers
82 views

ToolBar back button is not working

Iam doing one project using storyboard ,in one viewcontroller i have a button.When i clicked that it will move to next viewcontroller but its a separate xib file. Now i tried to add aback button to ...
0
votes
0answers
27 views

instanciate new scenes from a NSObject Class

how do you implement a method inside a NSObject subclass for creating and returning a new scene embedded in a Navigation controller I've tried the following but always throws me an error the import ...
0
votes
4answers
51 views

[UIBarItem setTitle:]: unrecognized selector sent to instance

I'm trying to give my UIToolBar a title, but when I try to add a UIBarItem with a title attribute, I get this error. My code: UIBarItem *title = [[UIBarItem alloc] init]; title.title = @"My Title"; ...
0
votes
1answer
110 views

Custom UINavigationController UIToolbar subclass

I need to work with a subclassed UIToolbar in the UINavigationController. I know this can be done via Interface Builder but I need it to be done programatically. The docs state that the ...
0
votes
2answers
137 views

Set background image for UIToolBar

I've seen a lot of people doing this: [[UIToolbar appearance] setBackgroundImage:toolBarImage forBarMetrics:UIBarMetricsDefault]; For me it doesn't work, because my App crashes and says: ...
0
votes
1answer
50 views

Trouble adding item to UIToolbar

I'm working on an app with a split view controller. The master is a subclass of a tab bar controller and is the split view controller delegate. That part seems to work fine, and it does push the ...
0
votes
1answer
88 views

how can i show only picker and hid the keyboard ???

I'm trying to show only the picker and hide the keyboard but it's working only with the first textfield. I got a textfield that I made and when I click on the first textfield the picker popups but ...

1 2 3 4 5 14