Hi.
how i can create class from UIPickerView with custom delegate?
So there will be 2 separate delegates for 2 different UIPickerViews which can be created in UIViewController.
So if i use UIViewController: UIViewController <UIPickerViewDelegate, MyCustomPickerViewDelegate>
there will be 2 separate methods, 1 from normal UIPickerDelegate:
and another with my custom class
thanx in advance
how i can create class from UIPickerView with custom delegate?
So there will be 2 separate delegates for 2 different UIPickerViews which can be created in UIViewController.
So if i use UIViewController: UIViewController <UIPickerViewDelegate, MyCustomPickerViewDelegate>
there will be 2 separate methods, 1 from normal UIPickerDelegate:
Code:
-(void)pickerViewUIPickerView *)pickerView didSelectRowNSInteger) row inComponentNSInteger)component;
Code:
?????? - don't know how to do it
thanx in advance