2011年6月17日金曜日

UIPickerViewの初期値の設定

iPhone UIPickerViewの初期値
UIPickerViewで初期値を決める方法が判らなかったのでメモ。
int row = 25; 
int compNum = 0;

[picker selectRow:row inComponent:compNum animated:YES];

// selectRow:初期値にしたい値
// inComponent:何番目のドラムロールか

0 件のコメント: