Iphone 删除单元格并重新加载表视图时访问错误

Iphone 删除单元格并重新加载表视图时访问错误,iphone,ios,ios5,uitableview,Iphone,Ios,Ios5,Uitableview,我试图使用自定义UITableViewCell构建一个表,但删除单元格后,当我尝试加载视图时,会出现EXC_BAD_访问错误,这里我从字典中获取数据并将其加载到表视图 我的表格的代码如下所示: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { cell = (uploadCustomCell *)[tabelView1 deque

我试图使用自定义UITableViewCell构建一个表,但删除单元格后,当我尝试加载视图时,会出现EXC_BAD_访问错误,这里我从字典中获取数据并将其加载到表视图

我的表格的代码如下所示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    cell = (uploadCustomCell *)[tabelView1 dequeueReusableCellWithIdentifier:@"cell"];
    [cell setSelectionStyle:UITableViewCellEditingStyleNone];
    if (cell == nil) {
        [[NSBundle mainBundle]loadNibNamed:@"uploadCustomCell" owner:self options:nil];
        cell = (uploadCustomCell  *)self.uploadCustomcell;
    }
    saveBtnCcell.hidden = YES;
    cell.textNamefield.hidden = YES;
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    [cell.defaultSwitch setEnabled:NO];
    NSMutableArray *dictionary = [contents objectAtIndex:indexPath.row];
    NSLog(@"dict dict :%@",dictionary);
//
    cell.nameLabelCell.text   = [dictionary valueForKey:@"VideoName"];
    cell.userName.text = [dictionary valueForKey:@"User"];
    NSString *defaultVideo = [dictionary valueForKey:@"DefaultVideo"];

    if ([defaultVideo isEqualToString:@"1"]) {
        [cell.defaultSwitch setOn:YES animated:YES];
    }
    else {
        [cell.defaultSwitch setOn:NO animated:YES];
    }

    [cell.defaultSwitch addTarget:self action:@selector(setState:) forControlEvents:UIControlEventValueChanged];
    cell.thumbImg.image = [arrayimage objectAtIndex:indexPath.row];
    VideoNameTextField.hidden = YES;
    return cell;
}

- (void)setState:(id)sender {
    state = [sender isOn];
   //    NSString *rez = state == YES ? @"YES" : @"NO";
   NSLog(@"state.........:%d",state);
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath     *)indexPath {
    NSLog(@"height:%f",uploadCustomcell.frame.size.height);
    return 207;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSMutableArray *dictionary = [contents objectAtIndex:indexPath.row];
    NSLog(@"Dictionary:%@",dictionary);
    NSLog(@"indexpath:%@",indexPath);
    //
    NSLog(@"at index%d obj:%@",indexPath.row,dictionary);
    NSString *nameDetails = [dictionary valueForKey:@"VideoName"];

    guid = [dictionary valueForKey:@"GUID"];

    detailsNameLbl.text = nameDetails;
    detailsVehImg.image = [arrayimage objectAtIndex:indexPath.row];;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:
       (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {  
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [contents removeObjectAtIndex:indexPath.row];
        [tabelView1 reloadData];
    }
}
试试这个: [tableView DeleteRowsatindExpath:[NSArray arrayWithObject:indexPath]带RowAnimation:UITableViewRowAnimationFade]

您还必须使用此方法:

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { 
   return UITableViewCellEditingStyleDelete; 
} 



- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
[contents removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
//[tabelView1 reloadData];

}

numberOfRows可能是问题所在???在哪一行出现此错误?您在此方法中所做的操作numberOfRowsInSection设置一个异常断点-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section;{NSLog(@“行数:%d”,[contents count]);返回[contents count];}