-(NSString *) pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
return [pickerArray objectAtIndex:row];
}
pickerArray is the name of the array having the elements which are going to be shown in the UIPickerView.
If my Picker has 3 components, then the upper method fills everyone of them with he same array. How to fill it with different ones ?