//左滑cell时出现什么按钮
- (NSArray*)tableView:(UITableView*)tableView editActionsForRowAtIndexPath:(NSIndexPath*)indexPath
{
UITableViewRowAction*action0 = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleNormaltitle:@"关注"handler:^(UITableViewRowAction*action,NSIndexPath*indexPath) {
NSLog(@"点击了关注");
//收回左滑出现的按钮(退出编辑模式)
tableView.editing=NO;
}];
UITableViewRowAction*action1 = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleDefaulttitle:@"删除"handler:^(UITableViewRowAction*action,NSIndexPath*indexPath) {
[self.wineArrayremoveObjectAtIndex:indexPath.row];
[tableViewdeleteRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationAutomatic];
}];
return@[action1, action0];
}