I'm having a problem with the connections of UIPickerView. My viewController class looks like this:
@interface MyViewController: UIViewController <UITextFieldDelegate, UIPickerViewDataSource, UIPickerViewDelegate>
{
IBOutlet UIPickerView *pickerView;/this is what it says in all tutorials
//other textfields
}
@property..of textfields, label, nsstring
@end
In the interface builder, when i ctrl+click on the file's owner, my pickerview appears in Outlets and NOT in referencing outlets(against what is shown in tutorial). How do I make the connections? and what do I connect it to? I want the PickerView to be displayed on click of a button whose action is also registered in the above class.