UITableViewCell 中的 UIGestureRecognizer
在我的 UITableViewCell 中,我使用 UISwipeGestureRecognizer 来滑动单元格中的图像,但我被卡住了。例如,GestureRecognizer 调用方法,增加图像计数并重新加载行。如何定义被触摸的行并将其编号传递给方法?
In my UITableViewCell I had the UISwipeGestureRecognizer to swipe images in cell and I'm stuck. E.g., GestureRecognizer calls to method, that increment images count and reload the row. How to define the row that was touched and pass it's number to method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现,我们可以通过触摸坐标定义滑动的单元格。看起来是这样的:
I've found, that we can define swiped cell thru touch coordinates. It seems like this:
也许您应该禁用单元格选择 - 这通常会触发单元格重新加载。
Probably you should disable cell selection - that usually triggers cell reloading.