I have 8 textfields in one view. I want to populate each using a pickerview. Can I have 1 pickerview which will display different list of items from different arrays for dif
1.Use a toolBar with Done barButtonItem,which should hide the pickerView.
2.Now give your textFields tagValues like : textFiled1.tag=100;
then using this tag value populate your pickerView array.
3.When the user selects any Value from pickerView, in its delegate method write
if(textField.tag== @"Your Tag Value")
{
textField.text=[pickerArray objectAtIndex:row];
}
I guess you can try the code yourself, now that you have the gist of the solution.Good Luck!!