我有一个自定义UITableViewCells的TableView,当我刷单元格,显示按钮时,我得到两个这样的按钮 -
但需要一个按钮 - “删除”...... 我做错了什么? 单元格是自定义...但我不添加灰色按钮。
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath{
// Return NO if you do not want the specified item to be editable.
return YES;}
答案 0 :(得分:0)
我明白了。我没有看到,我添加了没有记录的功能,这是第二个按钮 -
-(NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath;{
return @"";}
答案 1 :(得分:0)
您只需要在委托方法中返回UITableViewCellEditingStyleDelete
:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}