重新加载 UIPickerView 中的所有组件后,行选择不会调用 didSelectRow
举例来说,我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决此问题的解决方案是仅添加一个空白行并将选择器加载到空白行。这会强制用户滑动
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 thedidSelectRow
get triggered.