//設(shè)置編輯模式為刪除
- (UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath{
returnUITableViewCellEditingStyleDelete;
}
//設(shè)置刪除按鈕的文字標(biāo)題
-(NSString*)tableView:(UITableView*)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath*)indexPath{
return@"刪除";
}
//點(diǎn)擊刪除按鈕后進(jìn)行數(shù)據(jù)處理
- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath{
if(editingStyle ==UITableViewCellEditingStyleDelete) {//判斷tyle 是否是刪除
//獲取需要刪除的哪一行數(shù)據(jù)
SweepsDatamodel1*model =self.dataSource[indexPath.row];
//這是我自己請求的接口(要換成你自己的)
[selfinitDataWithRemoveSweepsStakesRecordByRecordId:model.iduserId:[[UserDefaultsobjectForKey:@"userID"]integerValue]];
//在數(shù)組里面刪除self.dataSource是我的數(shù)據(jù)源
[self.dataSourceremoveObjectAtIndex:indexPath.row];
//刷新表
[_myWiningRecordTableViewreloadData];
}
}