iphone UIPicker 默认位置
有没有办法为 UIPicker 设置默认位置?我的意思是,如果用户可以在 UIPicker 中选择 1 到 100 之间的任何数字,我可以将其设置为自动从 50 开始吗?
Is there a way to set a default position for a UIPicker? I mean, if the user has the option of selecting any number from 1 to 100 in the UIPicker, can I set it to automatically start at 50?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样使用
selectRow:inComponent:animated:
:您可以在
viewDidLoad
方法中触发它,以便UIViewController
管理包含以下内容的视图:UIPickerView
。(也可能你可以在Interface Builder中指定默认值,但我不确定并且我没有检查......)
You can use
selectRow:inComponent:animated:
like this:You can fire it in the
viewDidLoad
method for theUIViewController
managing the view which contains theUIPickerView
.(It could also be that you can specify the default value in Interface Builder, but I'm not sure and I didn't check...)