iphone Programming Glossary: currentarray
How to use one UIPickerView for multiple textfields in one view? http://stackoverflow.com/questions/11612460/how-to-use-one-uipickerview-for-multiple-textfields-in-one-view  array2nd ... array3d ... and until 8. Then you create another just to point the array that should fill it like NSArray currentArray and you don't even need to init it it will be used only for pointing the correct array. So you should set the delegate of.. and in the method textFieldShouldBeginEditing you check who is the UITextField assign the correct array as the currentArray reload the UIPickerView with reloadData and return NO in the same textFieldShouldBeginEditing method. currentTextField is.. BOOL textFieldShouldBeginEditing UITextField textField currentTextField textField if textField myFirstTextView  currentArray array1st pickerView reloadData self animatePickerViewIn return NO and this way until 8th So when your view controller that.. 
 
 
     
      |