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. Appears on iOS.

learn more… | top users | synonyms

4
votes
0answers
206 views

Implement UIPickerview on Mobile Safari via HTML

Is there a way to create some effects similar to the UIPickerView on Iphone Mobile Safari via HTML/javascript/css?
2
votes
0answers
113 views

UIPickerview causing heap growth on deallocation

New to iOS and trying my best to get to grips with memory management and Instruments. My problem is I'm getting weird memory losses when adding/removing a pickerview. I've set up a very basic ...
2
votes
0answers
301 views

UIPickerView didSelectRow not called if quickly tapped while scrolling beyond element 0 or final element

When you scroll a UIPickerView component, and then watch it continue scrolling, it will eventually stop on an element and call didSelectRow. This is the intended behavior. Let's say you're on ...
2
votes
0answers
140 views

Bind UIPickerView with key and value

I am working on UIPickerView. I am able to bind and get the selected value with the below code pickerItems = [[NSArray alloc] initWithObjects: [[[Company alloc] initWithName:@"Alabama" ...
2
votes
0answers
265 views

Getting frame width of UIPickerView

How do I get the frame width dimensions of a UIPickerView? I need to calc the total view width - the frame width on both the left and right sides of the UIPickerView. In other words, ...
1
vote
0answers
76 views

UIPickerView selectRow:inComponent:animated not working in viewDidLoad but working in viewDidAppear

This issue is driving me crazy. I have a UIPickerView that I loaded in viewDidLoad, and I need to initialize the selected row that is to appear on the screen. My code is as follows: ...
1
vote
0answers
128 views

How to set size and bounds of an action sheet with a picker in it

I am trying to show an action sheet with a picker in it. This action sheet should be added to the toolbar so it should be displayed from the bottom of the screen. The action sheet is perfectly ...
1
vote
0answers
71 views

Core Data and UIPickerView - Default Value

I am working on an iPhone/iPad App that is using core data. I have a Table (Entity) that wants the user to select from another Table (relationship is setup in the model). I have worked through ...
1
vote
0answers
154 views

iOS Cocoa - custom uipickerview or similar

So I'm trying to create something like this for an app I'm making and I'm not exactly sure how to go about it. I was thinking of customizing UIPickerView or something with ScrollView. One of the ...
1
vote
0answers
49 views

Two pickerView in one View

I am new to Xcode. I am trying to build two picker View in one view. The data in first pickerView is coming as desired but I am unable to get data in second pickerView. One picker has one component ...
1
vote
0answers
37 views

Why is pickerView:titleForRow:forComponent: not part of the datasource protocol?

working with a UIPickerView gets me a bit confused. Why is pickerView:titleForRow:forComponent: not part of the datasource protocol? This is the main method to get the data onto the view. But its not ...
1
vote
0answers
236 views

UIPickerView on UIActionSheet in landscape mode appears blacked out

I have an app the I update a table row through a UIActionSheet. On the sheet I present a UIPickerView. The UIPickerView works and looks great in portrait on the iphone. But when I bring it up in ...
1
vote
0answers
87 views

Change NSURL selected from UIPickerView

In my app I load "feed link" into a tableView. It works well. But now I need to change that link using a UIPickerView. In my viewDidLoad there is this code for loading feed items into tableview. The ...
1
vote
0answers
222 views

Change the Backgroundcolor of a UIPickerView

I want to change the Color of the "Barrel" inside the picker with a gradient from red to blue (Temperature: hot to cold). I could draw the gradient piece by piece with ...
1
vote
0answers
158 views

UIpickerview hidden behind actionsheet

I am new to xcode and first time at stackoverflow. I have a pickerview as subview of UIActionSheet. Pickerview is used to select $ amount for a field. On iOS >=4.2, pickerview shows on top of ...
1
vote
0answers
170 views

How to emulate the inputView behavior with a subView?

I have a tableView with prototype cells. It loads the cell data based on a chosen date. I want to have a button (UIBarButton or UIButton) that displays a datePicker with the same behavior as an ...
1
vote
0answers
302 views

Memory management when upgrading application to iOS 5

I have a small iOS converter with a UIPickerView (three columns) and a button to allow swapping the first and third columns (I swap the two corresponding arrays of UILabels) Under iOS4.3 iphone ...
1
vote
0answers
94 views

Determine when animation of UIPickerView is started/stopped?

Is there a way to determine when the animation of wheel spinning of Picker is started and when finished ? I have looked in delegate methods of UIPickerView but did not see any useful information.
1
vote
0answers
314 views

UIImageView on horizontal UIPicker component displaying on iPhone simulator but not on actual iPhone

I have created a horizontal UIPickerView with UIImageViews (instead of textlabels etc). Basically works fine except the images only display on the iPhone simulator, but not on the actual iPhone. I ...
1
vote
0answers
229 views

UIPickerViewDataSource vs UIPickerViewDelegate logic

Why aren't methods like – pickerView:titleForRow:forComponent: part of UIPickerViewDataSource instead of UIPickerViewDelegate as it is currently? After all, the titles are data... This seems very ...
1
vote
0answers
156 views

Is it possible to spin a pickerview control automatically by detecting the iphone shake gesture?

I am new to the apple technology and i am developing an application for iphone(iOS), i am facing a problem while developing an application (i,e) the pickerview should automatically scrolls or selects ...
1
vote
0answers
142 views

Provide validations while using UIPicker as UIDatePicker

Hi, I am using a UIPickerView to accept payment card expiry date. As the date does not have date field, I could not use UIDatePicker. Now, I have got a nice picker which accepts months and year, ...
1
vote
0answers
130 views

UIPickerView (FlipsideViewController) display value in MainViewController

Using the flipsideViewControllerDidFinish method in my MainViewController class, I can display the values of various controls that are on my subview FlipsideViewController. e.g. a UIDatePicker by ...
1
vote
0answers
399 views

Cannot add a UIDatePicker to UIActionSheet

I want to add a UIDatePicker to a UIActionSheet, the code is below: UIActionSheet* actionSheet = [[UIActionSheet alloc] initWithTitle:@"DEMO" delegate:self cancelButtonTitle:@"Cancle" ...
1
vote
0answers
259 views

UIPickerView in UITableViewController view - scrolling problem

I have a pickerView in the UITableviewcontroller. When the user clicks on theUITextfield the pickerview pops up and works fine. But after the done action is performed the UITableview wont scroll till ...
1
vote
0answers
597 views

How to change the height of a UIPickerView on ios 4.3?

Hi i would like to know if its at all possible to change the height of a UIPickerView on IPhone IOS 4.3. Creating the UIPickerView programmatically doesn't work Setting the frame size ...
1
vote
0answers
1k views

UIPickerView frame size - margin issue

I can't seem to find an answer to this one anywhere - hoping someone can help! Does anyone know how to determine the margins that iOS puts around a picker? I've written a generic view that displays ...
1
vote
0answers
370 views

Changing UIPickerView's font size from HTML5

How do I set a UiPickerView's (in iphone/itouch)font size from HTML5. The situation is i am writing a mobile web page which has a dropdown. The drop down text seems to spill out of the uipickerview ...
1
vote
0answers
138 views

iphone clipping a MyPicker : pickerview : uiview

Just checking to see if someone has done this before. I used to have ways to modify the size of a UIPickerView. But it seems that ever since iOS4.0 it seems to be locked. If I do the usual trickery ...
1
vote
0answers
193 views

iPhone generic string, text, choice editor controller

Each time I build an iphone application, I found myself writing the same code over and over again: generic string || text || choice editor controllers. Imagine a tableview showing some data that I ...
1
vote
0answers
699 views

how can stop creating duplicates in camera roll while using UISaveVideoAtPathToSavedPhotosAlbum to save videos in camera roll?

I have a video in applications documents folder. I need it to be saved in camera roll. So, I used UISaveVideoAtPathToSavedPhotosAlbum method to save it in camera roll. It's working and I can see the ...
1
vote
0answers
352 views

Weird UIPickerView bug

Here is a picture of the main view for an app I'm making, the thing at the bottom is supposed to be a UIPickerView. I have the UIPickerView view controller in its own .h and .m files, separate from ...
0
votes
0answers
33 views

UIPickerView have no selected row background

My picker view have no blue background on selected rows in the components. I'm initializing it absolutely normally, yet still have some strange bug. iOS 6.1.4, iPhone 5!
0
votes
0answers
30 views

The scroll picker's locked height is huge! Smaller drop down list possibilities?

I am writing an app in which I'd like a user to pick from about 25 choices, but each choice is only about 4 letters long. I would like to use the built in scrolling wheel, but the dimensions are just ...
0
votes
0answers
66 views

UIPickerView Selected Row Label Color

I've made a custom UIPickerView but I'd like the UILabel to change color when scrolled into the selected row like this; Any ideas? Edit: What I'd like to do is change the color of the UILabel ...
0
votes
0answers
16 views

remove recurrenceRule of ekreminder with picker view

I thank you in advance. I'm really looking forward to your help., I am trying to handle recurrence rule of a EKReminder with a UIPickerView. Everything works fine except removing the rule. My ...
0
votes
0answers
21 views

Using a custom PickerView in storyboard

I have some View Controllers embedded in a navigation controller using a storyboard. In view controller 1 I have a custom PickerView that is hidden until the user selects a text field that lets the ...
0
votes
0answers
28 views

Pre-Select UIPickerView based on previous string in Xcode

I have the following code that populates a UIPickerView with the string value that was previously selected stored in the variable "preValue." NSUInteger currentIndex = [arrayColour ...
0
votes
0answers
25 views

Hide UIPickerView and adjust UITableView

I want to hide the UIPickerView when taping on the bar button. That code hides the UIPickerView if (self.yearPickerView) self.yearPickerView.hidden = !self.yearPickerView.hidden; But I want the ...
0
votes
0answers
33 views

How to show custom/enhanced uipickerview with monotouch dialog?

Got monotouch dialog finally working off a subview in my flyoutnavigation controller.....but I'm not in love with the datepicker thats shown on a black screen on its own. I want to show a custom ...
0
votes
0answers
40 views

pickerview is not responding to clicks at right side

i have a picker view which is in text field begin editing method not in viewdidload.if i click or scroll on right side, picker view for row method is not called. - ...
0
votes
0answers
78 views

PickerView in Objective-C

After I enter the following link, the device just display the black screen. Could anyone can please answer what is the problem? Actually, I am wondering the problem is occurring in this part: ...
0
votes
0answers
64 views

picker view for row not calling some time

I added my picker view to my main view programatically. If I touch on picker view, it touches the test scroll not the pickerview, so I am not able select a row from pickerview. - ...
0
votes
0answers
45 views

Xcode - Is it possible to retain transformation on orientation change?

I have a custom viewPicker that I am doing a transform on to make it a little bigger in size. Is it possible to retain this transform after an orientation change? After orientation is set to landscape ...
0
votes
0answers
66 views

iOS Load Previous Selected Values in Dependent UIPickerview load

This is my first post and I am hoping the community can help me. I have a View which contains a Dependent UIPicker that has 2 components. When A is selected in Component 1 of the UIPicker then A1, ...
0
votes
0answers
21 views

pickerview malfunctioning if i click at bottom right side

i have created a picker view in iPad if i click on left most side then only y picker is scrolling,otherwise it doesn't and i have so many radio buttons in my view if i click on picker view the radio ...
0
votes
0answers
31 views

UIPickerView selectRow:inComponent:animated with animated:YES behavior changed in iOS5+

In iOS3 and iOS4, UIPickerView selectRow:inComponent:animated with animated:YES had a smooth acceleration and deceleration animation behavior, very similar to what you'd get with manually flicking the ...
0
votes
0answers
17 views

pickerview not appearing properly in ios 4.3

i have a textfield and picker view below to that. pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(6, 30, 180, 140)]; pickerView.delegate=self; pickerView.dataSource=self; ...
0
votes
0answers
133 views

NSInternalInconsistencyException', reason: 'request for rect at invalid index path (<NSIndexPath 0xad48ba0> 2 indexes [0, 0])'

First of all, I want to say that all the code below worked under iOS 5.0 but not under iOS 6.0 My array self.categoryName = [[NSArray alloc] initWithObjects: @"Panel", ...
0
votes
0answers
21 views

UIPickerview Keeps crashing only after going past a certain component

Thanks in advance for the help! After selecting or passing the 5th row in the first component the app crashes with a "thread 1: EXC_Bad_Access code=1" error, I have narrowed the problem down to the ...

1 2 3 4 5 7