tags:

views:

44

answers:

1

hi , i got a pickerview and i want to add a code that will automaticaly show at the user the row i want.

thanks

+1  A: 

Use the -selectRow:… method.

[thePickerView selectRow:123 inComponent:0 animated:YES];
KennyTM