如何在 UITableView 单元格上实现 UISwipeGestureRecognizer?
如何在表格视图单元格中添加滑动手势?我在表格视图中使用自定义单元格,我必须从表格中删除该行,所以请指导我如何在表格视图中使用此滑动手势?
How can i add swipe gesture in my table view cell? i am using custom cell in tableview and i have to delete that row from table so please guide me how can i use this swipe gesture in table view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与任何其他视图绝对相同。将此代码插入到自定义单元格的 init 中或 UITableViewDataSource 委托的 cellForRowAtIndexPath 方法中。
Absolutely the same as in any other view. Insert this code either in your custom cell's init or in cellForRowAtIndexPath method of your UITableViewDataSource delegate.
您必须实现两个委托方法。
以及您必须执行编辑或删除代码的其他方法。
You have to implement two delegate method.
and other method where you have to perform you editing or deleting code.