有没有办法为UIPicker设置默认位置?我的意思是,如果用户可以选择在UIPicker中选择1到100之间的任何数字,我可以将其设置为自动从50开始吗?
答案 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中指定默认值,但我不确定,我没有检查......)