UIPickerView - 选择组件
在我的 iPhone 应用程序中,我有一个包含 2 列的 UIPickerView。
当用户单击右列并选择一个项目时,他们然后单击一个按钮。 之后,我希望再次选择 UIPickerView 的左侧列。
选择列(组件)中的任何行
我可以使用[myPickerView selectRow:myRow inComponent:myComponentanimated:YES]
有什么方法可以选择该列 本身?
谢谢
In my iPhone app I have a UIPickerView with 2 columns.
When the user has clicked on the right column and selected an item, they then click a button.
After this I want the left hand columns of the UIPickerView to be selected again.
I can select any row in a column (component) by using
[myPickerView selectRow:myRow inComponent:myComponent animated:YES];
Is there any way I can select the column
itself ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
再次审视这个问题(经过一夜的睡眠!)我意识到我正在寻找错误的问题;我真正想做的是将列调整大小到其初始状态。
我可以通过使用以下代码
中的调整大小代码
和感谢 Kovpas 来完成此操作
解决方案
Looking at the problem again (after a night's sleep !) I realised that I was looking at the wrong problem; what I really want to do is resize the columns to their initial state.
I can do this by using the following code
with the resizing code in
Thanks to Kovpas for the
solution