0

当用户向右滑动时,我想提供两个选项。

具有名称编辑和删除的两个选项或按钮。

目前它只在用户向左滑动时显示删除,即 UITableViewCellEditingStyleDelete

但我想自定义这个视图并给出两个灰色背景的按钮。目前它是红色背景。

代码是: -

- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{

    return UITableViewCellEditingStyleDelete;

   }

请帮助我如何实现这一点。

4

2 回答 2

2

You need to subclass UITableViewCell and override

setEditing:animated: and
layoutSubviews

This should work in the expected way.

于 2013-10-30T09:49:38.410 回答
0

该按钮是不可自定义的,如果您想执行该行为,您必须创建自己的自定义单元格并自己添加动画。

于 2013-10-30T09:46:48.827 回答