0
votes
1answer
25 views

How to scroll multiple component together in UIPickerView?

I have a problem related to scrolling multiple components of UIPickerView. I created uipickerview with two components but when i scroll one of them, other also scroll but after part of second. Code : ...
0
votes
3answers
58 views

Pickerview value on uitabelview cell

In my application i have implement the functionality as follows,Tabelview cell contains two button on click it shows the picker view,When i select picker value its not reflecting on uitabelview ...
0
votes
0answers
20 views

how can i recognise and check selected option in uipickerview from the content of the textfield related to that uipickerview

My problem is that when i try to recognise the content of the textfield of uipickerview and i try to check option which content is equal to content of textfield, if options are more than three options ...
1
vote
1answer
61 views

Protect class from UIAppearance

I have a UIPickerView in a view inside a subclass of UINavigationController. I have a UIAppearance proxy that I want to apply to many views contained in the UINavigationController subclass, but I ...
0
votes
1answer
31 views

How to select UIPicker first row value xcode?

This is my code but its not working properly I want to select first row value when i press the done button I tried this code, there are two views and and in each view there are two pickers, if i ...
0
votes
1answer
48 views

UIPickerView in UITableViewCell:issue in showing the value at particular cell

I am using the UIPickerView in UITableView for picking the integer value. I am not getting how to set the value to the label in particular cell. Below is my code: -(UITableViewCell ...
0
votes
0answers
69 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
2answers
64 views

display pickerview along with action sheet

I have a textfield. once I tap on that I want a UIPickerView to pop out and select an item from the UIPickerView and after once I am done with the selection I want to confirm the selection by tapping ...
0
votes
1answer
29 views

Trying to display an image and label when making a selection from the UIPicker

Please bare with me. I am new at this. I have an array for the geek names and an array for the careers of each geek. The geek names should appear in the UIPicker. When a name is selected, the image ...
0
votes
1answer
30 views

How to make two custom tableviews that works like a 2 rows uipickerview

I created a uiscrollview and add a uitableview as subview. I use this class to create two scrollivew each has added a tableview inside it. I want these 2 tableview works like uipickerview which has 2 ...
0
votes
1answer
35 views

Get value from detailTextLabel after PickerInputViewCell

I have a Custom cell that shows a pickerView when you select a row. Then you change the value and put it on detailTextLabel. But this method get the value before it changes. //Custom Cell ...
0
votes
1answer
43 views

Determine PickerView Value After IBAction is pressed

I have an iOS UiPicker working with my desired values and can detect when a new option is selected with the following code: - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row ...
0
votes
2answers
47 views

how to stop UIPickerView reusability

I'm working on a custom PickerView, i have a two components in the picker (hours, minutes), i have made the "0" in the minutes component gray and not selectable, everything works fine except that the ...
1
vote
1answer
163 views

Adding UIPickerView to UIActionSheet (buttons at the bottom)

I want to show a picker view (sliding up) deactivate the background while it's visible show (UIActionSheet) buttons at the bottom (not at the top) It seems to me an easy solution at first since ...
1
vote
0answers
85 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: ...
2
votes
5answers
94 views

Keyboard not dismissing when another UITextField is tapped that brings up a picker

I have 2 text fields that I am working with each one when clicked opens up a picker wheel with a toolbar on top that gives the option to dismiss the picker and bring up a keyboard everything works ...
2
votes
2answers
122 views

set UIPIckerView height width dynamically in iphone [duplicate]

I want to set UIPIckerView height width dynamically in iphone.please give me idea for it.
-1
votes
2answers
86 views

How to display value of 3rd row in uitableview when button clicked? [closed]

I am implementing UIPickerView using UITableView. So, when a user click a button I have to show the value of 3rd row from the visible cells. Thanks
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
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. - ...
1
vote
1answer
54 views

Two pickers for 2 textfield in one view

I have 2 text fields. Each has own picker view.When a user clicks on each of them, UIPickerView appears. Everything works. However, when,first, I click on the second text field, picker view for the ...
0
votes
0answers
33 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
2answers
38 views

How to fill pickerView properly

i have an UIPickerView and i want it to have 2 columns filled with items from my arrays, but i cant figure out how, there is my arrays: -(void)fillingStandartWeightArray{ if ...
0
votes
2answers
66 views

UITabBar keeps UIPickerView's bottom to display

I am trying to show the picker view immediately after the the viewDidLoad method get called. But, the UITabBar block some parts of picker view from displaying. How to bring the picker view to the ...
0
votes
2answers
88 views

Update UITableView contents depending on UIPickerView selection

I have a View Controller containing a tableView with two sections. Section 1 has only one row, and Section 2 has some array with no limit on the number of rows. When I click on the cell in Section 1, ...
0
votes
1answer
120 views

UIPickerView wont display data properly

I am trying to make a UIPickerView with data @"0", @"1", @"2", @"3"... display on rows, it will be a 2 columns pickerView. here is my code: this is .h file #import <UIKit/UIKit.h> ...
1
vote
3answers
78 views

Can't have a UIViewPicker well laid for iphone 4 & 5

I have one storyboard file for iPhone devices, and in one of the views there is a subview that contains a UIPickerView, and, when it runs on the iPhone 4 the UIPickerView is stuck at the bottom of the ...
0
votes
1answer
106 views

iOS UIPickerView set icon on selection bar [duplicate]

I would like to have a custom icon on my UIPickerView selection row as in the image below.. I would like to add the icons in the red x on the image and I don't know exactly how can I do this or if ...
0
votes
2answers
300 views

Custom UIPickerView and UIDatePicker, flatter design [closed]

I'm building a small iPhone iOS 6 app with a lot of custom design, and primarily using UIAppearance to apply custom styles. In the app I would like to use a UIPickerView and a UIPicker but the style ...
0
votes
2answers
98 views

change picker value based on another picker values

I am using two UIPickerView. Based on first, I need change values in another picker view. Any idea how to get this done? Note: I am using CCPickerView.
0
votes
3answers
113 views

when picker view selected keyboard still visible

i have a text field and picker view.when i select the text field picker view is appearing and if i select row in picker still my textfield is editable. i want to set textfield only in drop down ...
1
vote
7answers
129 views

UIPickerView not displaying data

I've followed a couple youtube tutorials as well as advice on here but I can't seem to get my UIPickerView to display its data. I'm populating the picker using three arrays and I thought I've ...
1
vote
1answer
61 views

Data from array is not showing up in the pickerView

I am trying to do Single-Component Picker example Beginning iOS 6 Development Book, almost every thing works fine but Data from array is not showing up in the pickerView Please Help Here is my .h ...
0
votes
1answer
47 views

Cant get values by choosing specific row in UIPickerView

i have a picker view with array of countries, and my point is, when user tap a specific row i will write some code depends of elements user choose, but, somehow its not working, please look at this: ...
0
votes
3answers
75 views

Filling a UIPickerView from a feed

I'm parsing a feed of location into an NSMutableArray called items. I am filling the a UIPickerView as follows: - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView { return 1; } ...
0
votes
3answers
88 views

How to cretae five UIPickerView with tag? And how to give different name to every UIPickerView, in iPhone?

I have 2 UIPickerView right now and I want to add three more later.The code is below: -(void)viewDidLoad{ Pos_x = 5; Pos_y = 70; for (i= 0; i<2; i++) { myPickerView = [[UIPickerView alloc] ...
0
votes
4answers
212 views

How to achieve UIPickerView as shown in image, with titles for components?

How to achieve picker view like this? I have implemented all necessary delegate and dataSource methods to populate the data, but the thing I am not able to understand is how to add this titles ...
1
vote
3answers
118 views

uipickerview selection on tableviewcell detailtextlabel

As I wrote in the title, I am trying to write down the value selected on a pickerview (populated by an array) to the detailTextLabel of the cell I clicked to bring up the pickerview. (The pickerview ...
1
vote
3answers
144 views

JSON Arrays and Sorting

I have this json array which I have outlined below. I want to know how I could get all the strings under the "name" key only and place in a certain array to be sorted alphabetically by name and later ...
0
votes
2answers
45 views

UIPickerView with detailed text

fellows! I am looking for how to create a picker view with label and detailed label like the link below, but I couldn't. http://itunes.apple.com/us/app/convert-the-unit-calculator/id325758140?mt=8. ...
4
votes
3answers
157 views

ios Hiding the Keyboard

My Question is : What is the best way to implement "Hiding Keyboard while PickerView (which is inside the PopOver) is Visible"? What I Want : I have one view which has around 15 TextFields. Out of ...
1
vote
1answer
95 views

how to set data for UIPickerView?

I am tryign to add a PickerView - But I see a black screen... What am I doing wrong??? UIPickerView *myPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)]; [self.view ...
0
votes
2answers
254 views

render dynamic form in iPhone application

I have to render dynamic form in iPhone application using tableview. This form may have multiple UI controls as button,textfield,lable, picker,date picker . I got one sample code for iPad which is ...
0
votes
0answers
61 views

UIPickerview with both disabled & enabled items

I have gone through the SO question Can I disable selection in specific UIPickerView item? .From answer given there, I came to know that we can disable selection for specific item in uipickerview. but ...
0
votes
1answer
124 views

Why is UIPickerView didSelectRow method crashing?

I'm a noob to iphone development(2nd day in xcode) and I am developing a beginners app that uses a UIPickerView with three components. I have using this tutorial, but some reason when I change the ...
1
vote
2answers
90 views

Small Size-issue on UiPicker with in an Alert View (problm withs height of the Alert View)

In my app i need to Have a Date Picker on UIAlert view I implemented this by following Date Picker in Alert View But while im using this date picker in alert view there is some height issues in ...
4
votes
3answers
288 views

How to Add Custom UIPickerView to UINavigationBar?

I need to add custom picker view toUINavigationBar like this. But If I move pickerview to UINavigationBar it appears behind UINavigationBar.How can I display it correctly above the UINavigationBar?
0
votes
1answer
143 views

Access JSon file to populate pickerview

There's a similar question to this on this site but being that i cannot add another comment on that question in form of a question, I have chosen to write mine here, pardon me.Here goes, I have a ...
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 ...

1 2 3 4 5 13