0
votes
1answer
57 views

UIPickerView not showing data correctly (Only Show “?”)

Forgive me if this question has been discussed previously. I have a problem displaying data in UIPickerView, it just display question mark "?". header file.h #import <UIKit/UIKit.h> @interface ...
0
votes
2answers
55 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 ...
2
votes
5answers
127 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 ...
0
votes
0answers
85 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
1answer
376 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 ...
-2
votes
3answers
216 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 ...
0
votes
1answer
77 views

Using two uipicker but always only one of them is being called

I am trying to create two picker controllers embedded in two different Actionsheets. The reason I am doing this is I want the user to select his date of birth and let the user select the gender. so ...
0
votes
1answer
656 views

UIPickerViewDelegate Methods Not Getting Called

I have created a custom view that contains a UIPickerView and a UITableViewCell to display the contents currently selected in the picker. My PickerViewController is set as both the delegate and ...
0
votes
1answer
674 views

How I Can Configure “DidSelectRow” In a Multi- UIPICKERVIEW?

Ok, guys here is my problem, I'm doing a Resistor calculator for electronic students with a uipickerview, but i dont have any idea how to configurate the method of "DidSelectRow". The idea of this ...
0
votes
2answers
2k views

Custom Look & Feel of UIPickerView;

I want a UIPickerView in following design; http://dl.dropbox.com/u/53051470/Screen%20shot%202012-04-18%20at%2012.02.36%20PM.png (sorry as a new user, can't paste image here) I read other questions ...
1
vote
1answer
338 views

Two uipicker in the same view

what i am trying to do is to put two uipickers on the same view, i read somewhere that one of them should have its own separate delegate i tried to do so but i couldn't make it work properly. Some ...
0
votes
1answer
258 views

iOS : My sound file can't play in PickerViewController

I have one music player with multiple sound app using a pickerView controller but when i try to build the app, the sound doesn't come out. Anyone can help me to troubleshoot my code? Here is my code ...
0
votes
2answers
175 views

Necessary to retain controller for datasource and delegate of uiPickerview?

As I understood, I should not be retaining a controller which is a delegate or datasource. I have made a UIPickerView, created in a property accessor as such: -(UIPickerView *)projectPicker { if ...
1
vote
1answer
2k views

Trouble with UIPickerView

I'm totally stuck with the UIPickerView. I keep getting the error : GDB: received signal: "SIGABRT". 2011-07-14 13:35:19.132 MeldStad[677:207] * Terminating app due to uncaught exception ...
0
votes
1answer
325 views

Row for pickerview titleForRow always start from 2

I'm using UIpickerview in my app. The problem is that my pickerview titleforrow function always return 3 rows although numberofRowsinComponent return more rows. - (NSInteger)pickerView:(UIPickerView ...
1
vote
1answer
349 views

Iphone two UIPickerView with different data

I wanted to display UIPickerView with number percent. But the second UIPickerView show up same percentage numbers. I don't want that. I want something like this: ...
0
votes
0answers
203 views

Taps/Gestures not following rotation of UIPickerView

I am adding a UIPickerView to an alert window that I created like this: UIWindow *pickerWindow = [[UIWindow alloc] initWithFrame:CGRectZero]; pickerWindow.windowLevel = UIWindowLevelAlert; ...
0
votes
2answers
923 views

pickerview for iphone that looks like country select feature

I want to create a picker that looks and works like the country select field of itune store account. Here is what I am talking about. http://i38.tinypic.com/5p0w91.jpg This picker doesn't have a row ...
0
votes
3answers
1k views

UIPicker selectRow

I am trying to select the first row as default.. Here i tried -(void)pickerViewLoaded{ [pickerView setShowSelectionIndicator:YES]; pickerView.delegate = self; [pickerView ...
0
votes
1answer
991 views

Does anyone know how to populate the picker controller with core data

I'm trying to populate the UIPicker with Core Data instead of an array but can't for the life of me figure out how to do it... Please can someone point me in the right direction as to what I can do ...
2
votes
1answer
9k views

How do I make a UIPickerView in a UIActionSheet

Just want to know how I would make a UIPickerView in a UIActionSheet with a simple array. Ok well I actually found out how to put it into an action sheet but I like your way better because it ...