Questions tagged [uipicker]

DO NOT USE. Please use the [tag:UIPickerView] tag

DO NOT USE. Please use the tag for all questions related to showing a spinning-wheel or slot-machine user interface on iOS.

142 questions
0
votes
0 answers

Adding UIDatePicker a non-Date option

I am trying to add native UIDatePicker a String option which which will represent the option for Ongoing, like job start-end intervals. However could not manage to find something. I tried to create a custom view with UIButton and UIDatePicker and…
Faruk
  • 2,269
  • 31
  • 42
0
votes
1 answer

UI picker Trying to do it the right way

I am trying to use a UI picker like a combo box in C#. User clicks on a TextField, I have set the inputView to be the picker. This works fine. User clicks on the row and I get the item on that row and place it in the textfield. However, when the…
Saro Khatchatourian
  • 1,047
  • 3
  • 14
  • 24
0
votes
2 answers

UIPicker specific question(iphone)

I am starting to learn to use the UIPicker in an application. what I want to do is that when the user clicks on the zipcode textbox, I want the uipicker to pop up and display list of zipcodes available. Just like a drop down in c# or VB.net. Do I…
Saro Khatchatourian
  • 1,047
  • 3
  • 14
  • 24
0
votes
1 answer

how to initialize uipicker with hex digits

I want to use my uipicker to initialize a 5character string representation of a hex number. So in other words I need each component of the uipicker to show 0-9,A-F dose anyone have an idea on how this could be done or if it is even…
tinhead
  • 385
  • 2
  • 10
  • 29
0
votes
1 answer

Initiate a UIPicker from a UIbutton

I would like to make a UIbutton, by press it, it trigger the appearance of a UIPicker from bottom with animation. May I know how and what code can i initiate the UIpicker from button? And where should i place and set the UIpicker in Interface…
Clarence
  • 1,951
  • 2
  • 34
  • 49
0
votes
1 answer

Select A Picker leads to change of UIbutton Image

I have been searching method to build a UIpicker, which the row selected will lead to the change of the image of a UIbutton. The usual if, else method to change button seems does not work here. Does anyone knows how this can be done? Here is the…
Clarence
  • 1,951
  • 2
  • 34
  • 49
0
votes
1 answer

how to ensure only picker data is selected in the textfield

I am using following code for the picker function in a UITextfield, how should I ensure that the value from the array is chosen and no other data input is there I shared the code below, I used the "guard" to check whether field is empty or…
0
votes
2 answers

Make more than 5 lines viewable on UIPickerView

The default UIPickerView shows the current selection along with two options above and two options below the current section. Is there a way to adjust this show that it shows more lines at a given time?
John
  • 10,839
  • 8
  • 26
  • 31
0
votes
1 answer

What are good alternatives to UIPicker?

I am working on a basic ordering UIViewController using the AQGridView to display multiple columns of products so I can use as much space as possible. For the time being I implemented UITextFields to enter the quantities for each product. I am…
A Salcedo
  • 6,378
  • 8
  • 31
  • 42
0
votes
1 answer

Multi Image Gallery

How can we built more than one image gallery in an iPhone application? The requirement is I have a picker in my view it has seven selections, each selection has one image gallery, by selecting the picker a correspondent image gallery will apper in…
Nipin pn
  • 17
  • 1
  • 3
0
votes
1 answer

How to remove grey/black border of an UIPicker (iphone)

I am using an UIpicker in a horizontal mode by rotating it 90 degrees. I would like to get rid of the grey/black border surrounding the picker. Is there a way to do that? Thanks!
user542584
  • 2,651
  • 2
  • 25
  • 29
0
votes
1 answer

iPhone plist add new string to array

I am populating a picker with values from a plist file. the format of plist is as below.
Devaski
  • 411
  • 6
  • 14
0
votes
0 answers

How to detect is UI Picker View scrolling

Im using AVSpeechSynthesizer, playing text from UIPickerView if I press play button firs I do picker.isUserInteractionEnabled = false everything is ok and in the end of play I do picker.isUserInteractionEnabled = true but if I do scroll picker first…
0
votes
1 answer

UIPickerView connections

I'm having a problem with the connections of UIPickerView. My viewController class looks like this: @interface MyViewController: UIViewController { IBOutlet UIPickerView…
Namratha
  • 16,630
  • 27
  • 90
  • 125
0
votes
2 answers

beginner with Swift with an error UIPicker

I am building a simple app that has a PickerView with 3 selections that should link to 3 viewControllers each named FirstViewController, SecondViewController and ThirdViewController. But I am getting this error > NSInvalidArgumentException',…