处理 UIPickerView 行的点击
我使用常规方法处理对 UIPickerView 行的点击,
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
但它仅适用于非当前行。我的问题是我还需要点击已选择的(当前)行。 didSelectRow 有什么想法或解决方法吗?谢谢。
I handle clicks to UIPickerView rows with a regular method
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
but it works only for non-current rows. My problem is that I need to get taps on the already selected (current) row also. Any ideas or workarounds for didSelectRow? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在每一行上放置一个透明按钮,并像处理任何其他按钮一样处理来自该按钮的触摸。
You could put a clear button over each row and handle touches from it like any other button.