UIPickerView - 选择组件

发布于 2024-10-03 00:25:38 字数 279 浏览 2 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌梦深 2024-10-10 00:25:38

再次审视这个问题(经过一夜的睡眠!)我意识到我正在寻找错误的问题;我真正想做的是将列调整大小到其初始状态。

我可以通过使用以下代码

 self.pickerView.delegate = nil;
 self.pickerView.delegate = self;

中的调整大小代码

-(CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component
{ ...
}

和感谢 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

 self.pickerView.delegate = nil;
 self.pickerView.delegate = self;

with the resizing code in

-(CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component
{ ...
}

Thanks to Kovpas for the
solution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文