重新加载 UIPickerView 中的所有组件后,行选择不会调用 didSelectRow

发布于 2024-10-11 18:43:44 字数 391 浏览 6 评论 0原文

举例来说,我的 ViewController 中有一个 UIPickerView。启动时,我在此处使用此代码:

[picker selectRow:3 inComponent:0 animated:NO];

选择我想要的行后,为什么它不触发 didSelectRow 代码?

- (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {}

关于这是为什么以及如何解决这个问题有什么想法吗?谢谢

Let's say for instance that I have a UIPickerView in my ViewController. Upon launch I use this code here:

[picker selectRow:3 inComponent:0 animated:NO];

After selecting the row that I want, why doesn't it trigger the didSelectRow code?

- (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {}

Any ideas on why this is and how to fix this? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

纵山崖 2024-10-18 18:43:44

我解决此问题的解决方案是仅添加一个空白行并将选择器加载到空白行。这会强制用户滑动 UIPickerView 以便触发 didSelectRow

My solution to fix this was to just add a blank row and the picker loaded to the blank row. This forces the user to slide the UIPickerView so the didSelectRow get triggered.

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