//侧滑
-(NSArray)tableView:(UITableView)tableView editActionsForRowAtIndexPath:(NSIndexPath)indexPath{
//确认订单
UITableViewRowActionconfirmOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@" " handler:^(UITableViewRowActionaction, NSIndexPath *indexPath) {
//自己需要实现的其他功能
}];
//取消订单
UITableViewRowAction *cancelOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@" "handler:^(UITableViewRowAction *action,NSIndexPath*indexPath) {
//自己需要实现的其他功能
}];
//评价UITableViewRowAction *evaluateOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@" "handler:^(UITableViewRowAction *action,NSIndexPath*indexPath) {
//自己需要实现的其他功能
}];
//查看订单
UITableViewRowAction *seeOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@" "handler:^(UITableViewRowAction *action,NSIndexPath*indexPath) {
//自己需要实现的其他功能
}];
return@[seeOrder,evaluateOrder,cancelOrder,confirmOrder];
}