Questions tagged [uitoolbar]

A toolbar is a control that displays one or more buttons, called toolbar items. A toolbar momentarily highlights or does not change the appearance of an item when tapped.

A UIToolbar is a bar of buttons in an iOS app. As formally defined by Apple, it is a control that displays one or more buttons, called toolbar items. A toolbar momentarily highlights or does not change the appearance of an item when tapped. Navigation controllers can display toolbars on the bottom of their views and manage the items for their child view controllers. The UIToolbar Class Reference can be found here on Apple's developer page.

The UIToolbar is also part of an important group in the iOS user interface, along with the status bar, navigation bar, tab bar, which all have specifically defined appearances and behaviors in iOS apps.

1285 questions
0
votes
1 answer

Determine textfield from toolbar IOS

I am trying to set up undo and redo for each textfield and unsure how to figure out how to determine which text field is the first responder. Is there an argument I can pass into the methods called by the buttons from the toolbar, or do I need to do…
Lost Sorcerer
  • 905
  • 2
  • 13
  • 26
0
votes
1 answer

Why can't I change UIBarButtonSystemItemPageCurl item tint?

I am using iOS 5.1 with StoryBoards. I want to change the tint of the standard page curl button, but I don't seem to be able too. The button is on a View Controller and is a pushed View Controller of a Navigation Controller. The toolbar is inferred,…
Peter
  • 288
  • 3
  • 8
0
votes
1 answer

UIPickerView with toolbar when UITextField is clicked

I'm trying to get a UIPickerView to display when a UITextField is clicked on by the user. I also want the UIPickerView to have a toolbar at the top with buttons to submit the selection and cancel. Do I need to connect a UIPickerView in the interface…
user1450221
  • 109
  • 2
  • 12
0
votes
2 answers

UISplitViewController with UIToolbar not showing UIBarButtonItem in landscape mode

I am new to SplitViewController and I am running into the following issue. Here is the setup: In IB, I only have a VC linked to the SVC as the detail VC (This compares to the standard Master Detail project template which has a Nav Controller as the…
Khaled Barazi
  • 8,681
  • 6
  • 42
  • 62
0
votes
4 answers

Create Scrolling UIToolbar

Is it possible to create a scrolling UIToolbar for an iOS device in Xcode? I am using Xcode version 4.5 beta. ViewController.m ⬇ - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a…
atomikpanda
  • 1,845
  • 5
  • 33
  • 47
0
votes
1 answer

How to animate a tabbarbutton image

I have a toolBarItem which calls a save action on a database. I would really much like to change the image of the item (a cabinet) dynamically so that a drawer opens, a label is animated "inside" and then it closes. Very much like the trash item on…
Marcal
  • 1,371
  • 5
  • 19
  • 37
0
votes
2 answers

Back Button Issues with Toolbar and ViewControllers!!! Require assistance

I currently have a tableview that has 3-5 rows. Currently designing a 5 page manual sort of. the idea is each row is supposed to link to their own individual view controller. In each of the 5 individual view controllers I have toolbars at the bottom…
Masterminder
  • 1,127
  • 7
  • 21
  • 31
0
votes
3 answers

Toolbar(?) underneath navigation bar - iPhone

I'm wondering how one goes about implementing something like the following: The grey bar underneath the navigation bar that contains 2 buttons, 'Expense' and 'Income'. Can anyone point me to a resource or explain how you implement something like…
Jack Nutkins
  • 1,555
  • 5
  • 36
  • 71
0
votes
2 answers

How to add a UIToolbar on top of UIPickerView? (iPhone/iPad)

In my app I have a button that when pressed should present a UIPickerView with a UIToolbar on top of it. When the user has selected the value in the UIPickerView they then press a button in the UIToolbar which dismisses both the UIPickerView and…
user843337
0
votes
1 answer

Simple Horizontal Button Bar for iOS

I have a requirement for a very simple Button Bar. It should take up the width of the screen. It should allow at least 3 buttons. The buttons should be of equal width and together take up the whole width of the bar. Each button should be…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
0
votes
1 answer

iPhone: varying transparency of previous/next button on inputAccessoryView

Short version: I have a working solution using a UISegmentedControl but I don't like how it looks. When I use Safari, it "dims" either previous or next when it's at the beginning or end of the list of input fields. I can't convince a…
Cubs Fan Ron
  • 687
  • 6
  • 17
0
votes
1 answer

Sharing feature recreation with UIToolbar

I'm currently trying to recreate the sharing feature seen in Hacker News in the AppStore. Screenshots here and here. I know that they use a UIToolbar, and when the user taps the Share-Button, they somehow move the view up and show another view under…
mstottrop
  • 589
  • 5
  • 21
0
votes
3 answers

UIToolbar in RootViewController

I need UIToolbar when my application launches. It will be on every screen through out the application. So for that i have add it in RootViewController. #import "AppDelegate.h" #import "MainViewController.h" @implementation AppDelegate @synthesize…
user1120133
  • 3,244
  • 3
  • 48
  • 90
0
votes
1 answer

UIToolbar translucent like photos app

I was wondering how to make the UIToolbar look transparent like the photos app where it allows the photo below it to be seen. I have my UIToolbar placed in IB. In IB, I set both the tintColor and backgroundColor to ClearColor. In code, I also…
Crystal
  • 28,460
  • 62
  • 219
  • 393
0
votes
2 answers

UIToolbar is getting hidden

I have created UIToolbar control.which is added as setInputAccessoryView to one UITextField Control.Which works fine. the tollbar comes up with uikeyboard when tapping UITextField.Up to this no issues. When i placed one button, when tapping on it i…
user198725878
  • 6,266
  • 18
  • 77
  • 135