左滑删除,iOScell设置

来源:互联网 发布:flash cc mac 编辑:程序博客网 时间:2024/05/17 23:28

左滑删除

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

{

    returnYES;

}

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

    if (editingStyle ==UITableViewCellEditingStyleDelete) {

        

        [self.courseArrayremoveObjectAtIndex:indexPath.row];


        [self.ui_tableViewdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath]withRowAnimation:UITableViewRowAnimationFade];

    }

}


0 0
原创粉丝点击