UITableViewCell 中的 UIPickerView - 如何选择值而不是滚动 TableView?
我有一个自定义 UITableViewCell,它有一个标签和一个 UIPickerView。显示工作正常,但是当我想在选取器中选择一个值时,TableView 会滚动。我该怎么做才能使单元格中的手势转到选取器而不是整个 TableView?
我能想到的唯一解决方案是将整个TableView 设置为scrollEnabled = NO。这适用于选择器,但现在我无法访问自定义单元格下的单元格。控制必须更加细粒度。
I've got a custom UITableViewCell that has a label and a UIPickerView. Display works fine, but when I want to select a value in the Picker, the TableView scrolls. What can I do so that the gestures in the cell go to the Picker instead of the whole TableView?
The only solution I could come up with was to set the whole TableView to scrollEnabled = NO. This works for the Picker, but now I can't get to the cells under the custom cell. Control has to be more fine-grained.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以获取两个手势中每一个的 UIGestureRecognizer,并告诉其中一个手势需要等待另一个手势失败。如果每个细胞都有一个,这就变得过于实用了。
也许您应该添加一个控件或让附件视图“调出”选择器,然后在完成后将其关闭。
If you can get hold of the UIGestureRecognizer for each of the two gestures, and tell one it needs to wait for the other to fail. With one in every cell, that becomes over-wieldy.
Perhaps you should add a control or have the accessory view "bring up" the picker, and then dismiss it when done.