iphone UIPicker默认位置

时间:2010-06-16 18:07:43

标签: iphone uipickerview

有没有办法为UIPicker设置默认位置?我的意思是,如果用户可以选择在UIPicker中选择1到100之间的任何数字,我可以将其设置为自动从50开始吗?

1 个答案:

答案 0 :(得分:6)

您可以像这样使用selectRow:inComponent:animated:

[somePickerView selectRow:49 inComponent:0 animated:NO]; // Zero-indexed, so row 49 is the row that says 50

您可以使用viewDidLoad方法为管理包含UIViewController的视图的UIPickerView方法启动它。

(也可能是你可以在Interface Builder中指定默认值,但我不确定,我没有检查......)