Tagged Questions
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;
...
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 ...
0
votes
1answer
308 views
UIPickerView with 2 components
I have a UIPickerView with 2 components
The default value of both components is selected to the initial index.
How can I set the 1st component to the second index and leave the 2nd component on the ...
3
votes
1answer
466 views
UIPickerView - Selection on Tap
I am showing a uipickerview , in that I set one entry as selected or highlighted.now when user want to have that already highlighted entry he has to scroll and select the entry. Instead is it possible ...
0
votes
1answer
126 views
iOS : How to autostop the sound file on the PickerViewController when user select a new picker?
I have one music player with multiple sounds. My question is when i pick one of the object in the picker view, it will play automatically, but when i select a new one, the old sound won't stop. The ...
0
votes
1answer
172 views
UIPicker with multiple components crashing
I am trying to create an app using UIPickerView with three components. The first component has 3 rows. The second component has 6 rows and the third component has 12 rows. Every time I scroll beyond ...
1
vote
1answer
1k views
UITableView and UIPickerView interaction issues
I have a UITableView consisting of three rows - each row is a data field in a settings screen. When the user clicks a row, I have a UIPickerView appear for them to select a value. I am using the ...
0
votes
1answer
602 views
Replace keyboard with UIPickerView
I want to replace the keyboard when tapping on a UITextField with a UIPickerView and also add a button / function to dismiss the UIPickerView.
I searched a while but found just a whole example for ...
0
votes
4answers
2k views
TextInput Field with Pickerview instead of keyboard
I want to add a pickerview instead of a keyboard for a specific textfield and fill the picker view with content directly in the .m file
What is the easiest way to accomplish that?
Can I do this ...
0
votes
1answer
333 views
UIPickerView in an actionsheet in landscape
I display a picker view in an actionsheet in my iPhone app; that is, I have a button in a view which triggers an actionsheet that holds a picker view. It works great, except when the user rotates the ...
1
vote
2answers
1k views
Triggering code when UIPickerView selectRow:inComponent:animated:YES is completed?
My action method:
- (IBAction)buttonPressed {
// animate picker to random row (picker is a UIPickerView)
int row = random() % [self.column1 count];
[picker selectRow:row inComponent:0 ...
0
votes
1answer
179 views
can the SelectionIndicator for a UIPickerView be customized?
I need to have a UIPickerView as UIDatePickerModeCountDownTimer but with more than 2 columns, like hours, minutes, seconds. So doing a UIPickerView like this is a no brainer, but I'd like to show the ...
0
votes
1answer
722 views
One UIPickerView Two Data Sources/Views works once then crashes
I am trying to display a single UIPickerView in my app and depending on what button is selected a UIPickView will popup and populate with the relevant data for the button selected. No sure if it ...
1
vote
0answers
596 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 ...
0
votes
3answers
1k views
UI Automation Testing: How do I select UIAPickerWheel values?
I've hit a roadblock in trying to write some automated tests for my iPhone app. Judging from the documentation I feel like this should select the first row of the first component of my UIPickerView:
...
0
votes
2answers
1k views
UIPickerView Causing Crash in iOS4
I have a simple tabbar app. Built directly from the tabbar template. As I test the app, I notice that the app sometimes crash. After pinpointing the right sequence, I found out that the app will crash ...
0
votes
2answers
599 views
Changing Height of UIPickerView Selection View [closed]
Is it possible to change the height of UIPicker "Selection View"?
0
votes
1answer
348 views
Rotated UIPicker displaying labels low-res?
I have been working on a horizontal UIPicker, and I've finally gotten the picker and the labels on the picker to both display rotated. But, the issue I'm noticing now is that the labels display in low ...
1
vote
0answers
137 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 ...