我的代码允许向左滑动UITableViewCell,它显示一个删除按钮。如何在我可以自定义的右侧制作类似的东西?
答案 0 :(得分:0)
试用SWTableViewCell开源库。它允许您在不同的滑动方向上添加自定义实用程序按钮。
在您的UITableView tableView:cellForRowAtIndexPath:
方法中设置所需的按钮:
cell.leftUtilityButtons = [self leftButtons];
cell.rightUtilityButtons = [self rightButtons];
cell.delegate = self;