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

0
votes
1answer
101 views

Is there a fully customizable UIPickerView-like open source component for iOS?

I need to customize the appearance of a UIPickerView but as far as I know it is not possible. Before re-inventing the wheel... is there a open source reproduction of UIPickerView which allows for ...
0
votes
1answer
81 views

Picker not populating in iOS6 but populating in iOS 5.1

Have an odd thing happening with an app I'm on. Firstly, the code and particular action within the app is fine when running on the iOS 5.1 simulator. When I run the same app on iOS 6.0 simulator, the ...
1
vote
2answers
67 views

Inherited value from other control

I am new in programming.I have an basic doubt of inheritance.I have a UITableView in ViewController and when I select first row of Tableview.It take me to the Picker page in which only I have to ...
0
votes
3answers
138 views

iOS trying to pass data between two view controllers

I have a simple master-detail application that I am trying to pass data between one view controller to the next. I have one view controller that is presented as a modal view controller where the user ...
0
votes
0answers
32 views

issue with UIView and PickerView

I've been developing an app for iPhone here's the thing I have a viewController with a tableview and at the bottom I've added a view with a toolbar with a button inside of it and a pickerView ...
0
votes
4answers
262 views

How to hide a UIPickerView when the user make its choice

I've created a custom UIPickerView with the following code UIPickerView *picker =[[UIPickerView alloc] initWithFrame:CGRectMake(139,50,161,30)]; picker.delegate=self; ...
0
votes
1answer
278 views

How to customize an UIPickerView in iPhone Xcode reducing its dimension?

I would like to reduce the height of a UIPickerView in my iPhone app, so that it shows only 4 rows on the right side of a label. It's a sign up view. I want just a little pickerview for the credit ...
0
votes
0answers
62 views

Picker goes black, then crashes app (sometimes)

I have a number of text fields that offer a selection of pre defined values in the form of a picker view. Occasionally, usually after a lot of text boxes have been filled in, the picker goes black, ...
0
votes
1answer
195 views

UITableView Rows selection with UIPicker Option

I have a tableview with 5 rows, when I select a row it opens a UIPickerView in the next page to select options,the same things happen with 5 rows.Now I want ,The Pickervalue, It should be reflected on ...
0
votes
3answers
311 views

Set a UIPickerView to bottom of UITableview regardless of scroll position

I'd like to present a UIPickerView snapped to the bottom of a UITableView regardless of where it is scrolled. Currently I have a UIPickerView added to a UITableView that I present when a button is ...
0
votes
1answer
261 views

customize UIPickerView elements to start at top in xcode?

1.--> I need to customize a UIPickerview elements to start from the top.As of now we can see the picker elements starting from the middle like the one shown in figure(apple started from middle of ...
0
votes
0answers
48 views

Picker with many text fields

I'm using picker with many text fields, and I want to show "selected item in text field" in the picker automatically. I tried to use selectRow, but it doesn't work. What should I do? Or where is the ...
-4
votes
3answers
264 views

How would I set up a UIPickerView? [closed]

I am setting up a UIPickerView to have choices like choice a, choice b, choice c and so on. I have tried to interpret the sample code from Apple but that seems very difficult to understand for a ...
0
votes
4answers
989 views

ToolBar at the top of UIPIckerView in xcode?

I need to add a toolbar with done button on the top of UIPickerView. I don't want to use actionSheet because I want the rest of the view to be active. I've gone for the following code: - ...
0
votes
1answer
292 views

UIPickerView inside a UIPopoverController memory leak

I'm relatively new to iOS programing so I'll do my best to describe the problem I'm having. If I can provide some additional info to clear things up please tell me. I'm currently displaying a ...
-1
votes
3answers
99 views

Scroll the scrollview up when pickerview comes up

I have a form that I put inside a scrollview. On this form I have a couple of buttons that puts up a dateTime picker or a pickerView when I press on them. But I was wondering if I can but my form up ...
0
votes
0answers
70 views

seek the avplayer video using uipicker

is this possible seek the avplayer(video) using uipickerview ? By changing the row on increment ,video will move forward while on decrement video will move backward.
1
vote
1answer
109 views

Adding a UI Picker to a UITextView

I'm trying to add a UIPicker to a UITextView when it is selected to choose an age. I found a previous thread and trued to implement the code but I can't get it to work properly. When I build the ...
0
votes
1answer
236 views

UIPickerView in UITableView doesn't react to touch in lower half of cell

I have a UITableView with one cell only (I will need more later) that contains just a UIPickerView. The single component in the UIPickerView will only scroll when I begin touching it in the top half ...
1
vote
1answer
188 views

How do I dynamically change the row height of a UIpickerview throughout its lifetime?

Just to clarify, I am not asking how to set the row height once in the beginning when the UIpickerview is being set up. I know you use pickerView:rowHeightForComponent for that purpose. However, what ...
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 ...
0
votes
1answer
109 views

Building a UIPickerView Util class

I'm trying to learn iOS from an entirely Android background. Sorry for the hyper noob question but I I would like to build a UIPickerView Util class that can be reused over and over again as a ...
1
vote
7answers
288 views

Best way to populate an array of Strings in objective C

In Objective-C, I am looking for a cleaner way to populate an array of strings. I want to populate an array and the easiest solution appears to be hardcoding like NSArray *arr = [[NSArray alloc] ...
0
votes
0answers
324 views

Source type 1 not available

I have an app for iPhone and iPad, and when I try to load an UIPickerViewController in a UIPopoverController for iPad I get the Exception "Source type 1 not available". getting the problem even though ...
0
votes
1answer
253 views

Custom UIPicker

I have been working on the app, that has 3 uipickers. I want to implement images in each uipicker. However as seen in the image attached below, it just affects only one uipicker, not all of them.I ...
0
votes
1answer
587 views

UIPickerView selectrow crash in iOS 6

My application build & run in iOS 5.x perfectly, but it crashes when I call selectRow:inComponent:animated: method of UIPickerView in iOS 6. code : [_pickerview selectRow:1 inComponent:0 ...
0
votes
2answers
180 views

How to use UIPickerView on second ViewController

" I am creating a application for IPhone in which I have to creat a login page. after getting the response from the server..it will navigate the user to next view. in next view, i m using a ...
0
votes
1answer
137 views

Some time cannot hide iOS keyboard and show UIPickerView

This is my .h xxxx : UIViewController<UITextFieldDelegate> and my .m UITextField *quarterPicker = [[[UITextField alloc] init] autorelease]; [quarterPicker setFrame:CGRectMake(150, 370, 60, ...
0
votes
1answer
217 views

Customize UIPicker-Insert Images

As seen image below, I am trying to customize my picker. I have successfully added images on my picker but not affected all other pickers.I have put my code as well for reference. Thanks a lot in ...
3
votes
4answers
748 views

Show data in UIPickerView second component based on first component selection

I am using a picker with two components. I want if I select a row in first component on the basis of selected component it shows the value of the corresponding data. As Picker is showing that ...
-1
votes
1answer
56 views

Putting different elements in individual component/wheel of UIPickerView

-(NSString *) pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component { return [pickerArray objectAtIndex:row]; } pickerArray is the name of the array ...
0
votes
0answers
41 views

UIPickerView and Static Library

What we required to implement UIPickerView in the static Library and then use that library in our project. For this, we just did all what required and also we're able to get the log "Protocol confirm ...
0
votes
1answer
64 views

button not getting pressed on picker view

I am adding a button as view for row method in picker vies's delegate method. But button is not getting pressed in iOS4.0, Its working fine on iOS5.0 and above. - (UIView *)pickerView:(UIPickerView ...
0
votes
1answer
73 views

Intercepting touches in static UIPickerView

I have a 5 components UIPickerView which needs to be disabled to normal user interaction (ie: no spinning / clicking around to spin them). I need however to detect touches inside them and react ...
3
votes
3answers
442 views

issue of hide uipickerview in iphone

I want to display UIPickerView with UIToolBar on the top of pickerView with done and cancel button.Attached is the screen shot for the same.I also have tab bar controller in bottom side of view and ...
1
vote
1answer
81 views

UIPickerView Cascade-like Selection

Is it possible to dynamically filter the selection from one side with the other? For example | car types | color | | Toyota | Blue, Yellow | | Ford | Green, Orange, Purple | | Ferrari | ...
1
vote
1answer
601 views

Set UITextField's text as default value in UIPickerView in iPhone.?

I have some text in textField on view load.I want that particular text to be set as default value of UIPickerView ..The value in textField is one of the value of UIPickerView..How can I make it ...
0
votes
1answer
151 views

How to display value of uipickerview when button clicked

I want to display value of uipickerview into a text field when I click a button. I implemented a button action method when if I am trying to access value of like this it is giving error: ...
-2
votes
3answers
203 views

Decrease the margin of content of UIPickerView ios

Modification due to the first 2 answers : what I want to modify is not the height of the UIPickerview. What I want is to make the content of UIPicker begins from the upper side of UIPicker. Here is an ...
12
votes
2answers
772 views

UIPickerView can't autoselect last row when compiled under Xcode 4.5.2 & iOS 6

I have been beating my head against the wall trying to diagnose my app's inability to automatically preselect the last row of a UIPickerView using code that successfully worked under older versions of ...
0
votes
0answers
72 views

Is there any way to find UIPickerView component data using UISearchBar?

I'm trying to implement a UISearchbar which would search for the array data in UIPickerView. My components are connected. So if it could find out the numeric data in first component, rest of them ...
0
votes
1answer
48 views

How can i select the complete row for different components in UIPickerView?

I have 4 components in PickerView. I want to select the complete row in all the components when row 0 of component 0 is selected. Similarly, for every other row of each components. Is there any way to ...
-1
votes
2answers
133 views

How can i populate UIPickerView from 1.0 to 50.0 in most elegant way?

I tried populating UIPickerView using array = [[NSArray alloc] initWithObjects=@"1",@"1.2"....@"50.0",nil]. But the issue is that the view crashes automatically once i click it in a TabBarController. ...
2
votes
4answers
282 views

UIPickerView Causing leaks when connected via datasource

I created a test project to confirm my memory leaks: Project file: https://dl.dropbox.com/u/3703182/PickerView.zip Basically a UIPickerView is connected to a datasource via IB. When it's connected to ...
1
vote
1answer
124 views

UIPickerview in iPhone?

I m new to objective-C and I need to create a UIPickerView when a particular textfield is touched that would be populated with the items of NSMutableArray..I have implemented this code but couldnot ...
0
votes
2answers
236 views

iOS didSelectRow not called on selection a row?

I know its very basic question, but i'm facing a strange behaviour with UIPickerView. Here is my scanario - I'm using UIPickerView in my app. my problem is that when i click on a row didSelectRow ...
0
votes
2answers
243 views

iPhone UITextField inputView error: Assignement to readonly property

I am having issues when I want to assign UIPicker as inputView of UITextField. It shows error " Assignement to readonly property". Please help as I think it is not related to property sythesizing. I ...
1
vote
3answers
168 views

Getting null Value if i dismiss UIPickerview's Actionsheet with done button while picker spining

I have a UIActionSheet containing a picker and a UIToolbar. On the UIToolBar there is a done button. However, when I spin Picker component and before it stops spinning, if I tap Done button then I'm ...
1
vote
2answers
179 views

Sorting an array by alphabetical order before it is selected by UIPickerView

I am new to iphone development and need some guidance to do custom sorting of an array in iOS. I would like to sort the objects that appear in the UIPickerView. The objects that are passed to the ...
0
votes
1answer
84 views

UIPickerView with one object

I am using a UIPickerView and currently their is only a single object in it. How can I display that single object on label. It has this weird property that when we use pickerView the data is not set ...

1 3 4 5 6 7 25