Tagged Questions

The UIPickerView class implements objects, called picker views, that use a spinning-wheel or slot-machine metaphor to show one or more sets of values

learn more… | top users | synonyms

26
votes
5answers
37k views

Add UIPickerView & a Button in Action sheet - How?

Heading My application requires following things to be added in action sheet. =>A UIToolbar =>A Button on UIToolbar =>A UIPicker Control i have given below an image to understand my requirements. ...
26
votes
15answers
30k views

How to change UIPickerView height

Is it possible to change the height of UIPickerView? Some applications seem to have shorter PickerViews but setting a smaller frame doesn't seem to work and the frame is locked in Interface Builder.
6
votes
1answer
135 views

How can I use a UIPickerView in my settings.bundle like how the 'nike+ ipod' app does it?

I can't see how this is possible from the documentation but here nike is doing it in their app so there must be a way.
6
votes
2answers
860 views

UIPicker detect tap / touch on currently selected row

Okay guys, I have a UIPickerView and I want to do something when the user TAPS the currently selected row. I have it working right now where if they tap a row which is NOT selected, it rotates to the ...
6
votes
2answers
11k views

Elegantly replace iPhone keyboard with UIPickerView

I have a table view that has embedded UITextFields for entering some data. It also has two other fields that popup a UIPickerView and a UIDatePicker - as demonstrated in the DateCell example from ...
6
votes
4answers
6k views

Overriding highlighted selection in UIPickerView

I have a custom UIPickerView where I use: -(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view to ...
5
votes
3answers
2k views

Center UIPickerView Text

So I have a uipickerview with rows that only contain the number 0-24 and it looks a bit silly since the numbers are left aligned leaving a huge gap on the right of the pickerview. Is there an easy ...
5
votes
0answers
1k views

UIPickerView selectedRowInComponent: returns stale data after code adjusts it

I have a UIPickerView with multiple components. Some values are grayed out, and my pickerView:didSelectRow:inComponent honors this by shifting the picker component in question to the nearest valid ...
5
votes
3answers
5k views

right align text in UIPickerView

How can I right align text in a UIPickerView? I tried to make custom UILabels for the row views, but for some reason, nothing is showing up, right-aligned or otherwise. Here's what I wrote: - (UIView ...
4
votes
4answers
209 views

How do i remove the blue highlight when selection occurs in a UIPickerView

when i select a cell in my modified picker view, a blue background colour appears. all other treads i have seen do not give me a good answer. anyone has a solution?
4
votes
3answers
416 views

Enter fractions in a uitextfield from 3 UIPickers?

So what I'm intending to do is instead of typing in decimals, I want to be able to enter whole numbers and fractions in a textfield. Or select them from a UIPicker. Example: Feet, Inches, ...
4
votes
2answers
2k views

How can I get a check mark beside UIPickerView labels?

The UIPickerView that appears in Safari has a check mark beside the current choice. Is there a built-in way to get this, or do I have to program it up myself? If I do have to create it, can anyone ...
4
votes
1answer
362 views

Overriding highlighted selection in UIPickerView

I have a custom UIPickerView where I use: -(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component ...
4
votes
6answers
10k views

Change UIPickerView background

I want to change the border color of a UIPickerView. I do not see a tint property for the UIPickerView. Is there any way this could be done? Or a workaround? Thanks.
4
votes
4answers
13k views

Select row After UIPickerView is loaded

I have an iphone database app that loads a UIPickerView with data from a table. I want to set the selected row to a particular row from the data in another table. for example: Lets say I have a ...
3
votes
3answers
924 views

UIPIckerView in UIPopoverController

I'm not trying to resize the PickerView's height. I'm fine with having the default size, which I believe is 320 x 216. I created this code to present a pickerView in my popovercontroller, however, I ...
3
votes
1answer
235 views

How to make uipicker view loop?

In my app, i would like to make a uipickerview like the one in uidatepicker. thing is, i cant get it to repeat the values. how would i do that? The values come from an array, that should be repeated. ...
3
votes
0answers
425 views

How to change the Background color of UIPickerView in iPhone

I have used picker view controller in my application. Now i want to change the color of the background color. So how can i change the background color of picker view and want to change the row ...
3
votes
1answer
278 views

iPhone: File Picker (Again)

Ive seen a number of questions/answers stating there is no NSOpenPanel on iPhone, and open images using UIImagePickerController ...
3
votes
1answer
2k views

How to steal touches from UIScrollView?

Today on my creative time I did some quite comprehensive research on how to steal touches from a UIScrollView and send them instantly to a specific subview, while maintaining the default behavior for ...
3
votes
2answers
1k views

UIPickerView tap to scroll & custom row UIViews

You can scroll an UIPickerView both by swiping and by tapping items under or above the selection belt. You can populate an UIPickerView by either specifying NSString as titles or reusable UIViews for ...
3
votes
2answers
410 views

How to change font color of individual characters in a UIPickerView row?

I have an app which shows text in a UIPickerView based on a search. I want to highlight specific letters in the string that are there as a result of a wildcard character. For example, if I searched ...
3
votes
2answers
1k views

Can we use the UIPicker directly in an iPad Application?

Can we use the UIPicker directly in an iPad Application? I tried to show a Pickerview. But I felt it very small in size compared to the iPad Dimension. I was also not able to increase its height and ...
3
votes
2answers
574 views

How to save an image using UIImageWriteToSavedPhotosAlbum after it is transformed

Ok I have searched all over and I can't not seem to find the answer I need. :-( Here is what I am doing and what I need to happen. I have a UIImageView that I am able to transfrom using ...
3
votes
2answers
890 views

UIPickerView row image selection highlight colour

I currently have a UIPicker which I load in an image for each row using: - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component ...
3
votes
1answer
1k views

iPhone Core Data objects added to NSMutableArray

I am trying to have a bunch of Core Data objects (NSStrings) be added to an NSMutableArray so that I pickerView can use the strings as its data values. Currently I am able to save strings from a ...
3
votes
1answer
2k views

UITextField and UIPickerView

Is it possible for a UIPickerView to appear instead of a keyboard when a UITextField is selected? Every option in Interface Builder is some sort of keyboard. I suppose I could create a UIPickerView ...
3
votes
3answers
5k views

How to change UIPicker Color ? iPhone

I have observed that UIPicker always remains in black color, Is there any way to change the color of UIPicker & it's Selection Indicator? Thanks for helping me.
3
votes
3answers
7k views

how to show pickerview in uitextfield not the keyboard?

I want to show a UIPickerView on becoming FirstResponder of a UITextfield not the keyboard and fill the value in text field form the picker view. any one knows this?
3
votes
2answers
5k views

UIPickerview customisation

I would like to do some customization of the UIPickerView. End Goal: have a picker view rotating a few icon sized images. firstly i would like to change the black/grey boarder surrounding the ...
2
votes
2answers
95 views

Multiple UIPickers to show in action sheet

in one of my view controllers I want to use multiple pickers. Header file: @interface MyTableController : TTTableViewController <UIActionSheetDelegate, UIPickerViewDataSource, ...
2
votes
0answers
196 views

Xcode 4.2.1: UIPickerView causing memory leak, using ARC

For one of my last school projects, I am creating an iPad/iPhone application. For some days now I've been working on an issue with a certain memory leak. My application starts out on a specific ...
2
votes
1answer
120 views

UIPickerView appears but doesn't show data

I've been all over the place for the last two days trying to find the answer to this, but I can't seem to get it. As far as I can tell, I have everything setup correctly, but it just doesn't want to ...
2
votes
0answers
197 views

Different strange behaviour withUIPickerView selectedRowInComponent in iOS5

I have a strange thing happening with my app now after iOS5 updates. I have a UIPickerView and use [customPickerView selectedRowInComponent:0] to get the picked component. The user picks the second ...
2
votes
3answers
288 views

IOS, How to add a custom SelectionIndicator to a UIPickerView?

I want to add a checkmark instead of the default SelectionIndicator for UIPickerView. I am trying to add an image as subview UIImageView * checkMark = [[[UIImageView alloc] ...
2
votes
1answer
170 views

how to change the default color of selection bar in PickerView?

I have taken a pickerview in my application but client doesn't like the default color of the selection bar of the pickerview and he wants greenish shade instead of default color. I repeat I want to ...
2
votes
2answers
300 views

How to populate data from a webservice into UIPickerView? [iOS App Development]

Anyone knows how to populate, example a list of categories, from web service into the UIPickerView? Also, is it possible to put in a hidden value? Example, "Public" with hidden id of "1" "Member" ...
2
votes
1answer
561 views

Changing UIPickerView row height

I'm working on a program for a class I'm taking and part of the program requires a UIPickerView with images in it. I have the picker up and running, but the height of the rows in the picker are still ...
2
votes
3answers
498 views

Size of UIPickerView is not set correctly

I need to show a view that is not full screen and has a button and pickerView under it. I tried using this code: UIView *container = [[UIView alloc] initWithFrame:CGRectMake(20,20,200,200)]; ...
2
votes
2answers
628 views

How can I present a picker view just like the keyboard does?

I want a UIPickerView to show up when I press a button (just like keyboard) and then go away when user taps anywhere on the screen. How can I do this? Thanks. A bit more background: I have a ...
2
votes
1answer
187 views

handle clicks to UIPickerView rows

I handle clicks to UIPickerView rows with a regular method - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component but it works only for ...
2
votes
1answer
203 views

Manipulate UIPickerView to have single rows

Does anyone understand how Apple manipulated the regular UIPickerView to look like the image below? Instead of two rows, I only need one in the middle. If anyone can point me in the right direction or ...
2
votes
0answers
530 views

UIPickerview on textField click

I Have a textfield in a UItableview. The user clicks on the textfield and I want a UIpickerview to popup with data from NSArray. I tried to implement this but the app crashes. Please find my code ...
2
votes
1answer
258 views

Show row selected in UIPickerView in another View

i have two view controlled by a UITabBarController, and in one there is a UIPickerView, i wanna know how i can see the string row selected in another view when i start the application, beacuse the ...
2
votes
1answer
81 views

how to change UIPickview height

I have seen so many posts but none of them gives answer for this question. How to change this? Can anyone please help with it? Thank you, Ankita
2
votes
2answers
5k views

UIPickerView select and hide

How do you make a UIPickerView act like the one with a webview wherein there is a drop down selection box and instead of dropping down like usual websites do, the iphone makes it into a UIPickerView ...
2
votes
4answers
692 views

iPhone set some time delay

HI; In my iPhone App in UipickerView can I move picker Values up or down Programmatically To add effect of an animation like picker is moving itself only for that [picker selectRow:0 ...
2
votes
2answers
363 views

Iphone UIPickerView: Change selector height

is it possible to change the selector height on a picker view? Thanks
2
votes
4answers
604 views

programmatically stop uipickerview animation on iphone

I have a UIActionSheet containing a picker and a UIToolbar. On the UIToolBar there is a save button. However, some of my users reported pressing the save button before the UIPickerView stops spinning ...
2
votes
1answer
938 views

Removing UIPickerView Blue Highlight

For some time now I've been trying to remove the blue highlight in UIPickerView when you're using the pickerView:viewForRow:forComponent:reusingView: delegate. I'm sure many here have been there and ...

1 2 3 4 5 14