tableViewCell左滑出现删除或其它按钮

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{

    returnYES;

}

 

- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

{

   //删除

    UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"删除"handler:^(UITableViewRowAction *_Nonnull action,NSIndexPath *_Nonnull indexPath) {

       self.alertIndexPath = indexPath;

        WXAlertView* alert=[[WXAlertView alloc]initWithTitle:nil message:@"确定删除?"cancelButtonTitle:@"取消"okButtonTitles:@"确定"delegate:self];

扫描二维码关注公众号,回复: 3644454 查看本文章

        [alertshow];

        //        [self deleteProduct:indexPath];

        

    }];

    deleteRowAction.backgroundColor = [UIColor colorWithHexString:@"#ff6d65"];

    

    

   //编辑

    UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"编辑"handler:^(UITableViewRowAction *_Nonnull action,NSIndexPath *_Nonnull indexPath) {

        [self editProduct:indexPath];

        

    }];

    editRowAction.backgroundColor = [UIColor colorWithHexString:@"#fa9e0a"];//#bcbcbc

   

    

    

    

   //关注

   UITableViewRowAction *offShelfRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"关注"handler:^(UITableViewRowAction *_Nonnull action,NSIndexPath *_Nonnull indexPath) {

       self.alertIndexPath = indexPath;

        WXAlertView* alert=[[WXAlertView alloc]initWithTitle:nil message:@"确认关注?"cancelButtonTitle:@"取消"okButtonTitles:@"确定"delegate:self];

        [alertshow];

        //        [self offShelfProduct:indexPath];

        

    }];

    offShelfRowAction.backgroundColor = [UIColor colorWithHexString:@"#bcbcbc"];

    return @[offShelfRowAction, editRowAction,deleteRowAction];

    

}

猜你喜欢

转载自blog.csdn.net/qq910441958/article/details/76019671
今日推荐