4

我想更新到 tableview 自定义单元格。我想在搜索时刷新表格单元格。我使用 reloadRowsAtIndexPaths 方法。此方法有效,但没有更新单元格。你能帮我吗

下面的方法运行当我搜索

-(void)doSearchHotelName:(id)sender{

    NSIndexPath *tmpIndexpath=[NSIndexPath indexPathForRow:1 inSection:0];

    [self.tableV beginUpdates];
    [self.tableV reloadRowsAtIndexPaths:[NSArray arrayWithObjects:tmpIndexpath, nil] withRowAnimation:UITableViewRowAnimationFade];
    [self.tableV endUpdates];

}

下面方法表方法

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"Hotel_FilterSearchCell";

    Hotel_FilterSearchCell_iPad *cell = (Hotel_FilterSearchCell_iPad *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];




    if (cell == nil) 
    {
        NSArray *nib ;

        nib = [[NSBundle mainBundle] loadNibNamed:@"Hotel_FilterSearchCell_iPad" owner:self options:nil];

        cell = [nib objectAtIndex:0];
    }

    else if ([indexPath row]==1) {


        if([SharedAppDelegate.filter_selected_hotels_list count]==[SharedAppDelegate.filter_hotels_list count])

            [cell.cellExtraInfo setText:@"All(H)"];

        else if ([SharedAppDelegate.filter_selected_hotels_list count]!=[SharedAppDelegate.filter_hotels_list count])  

            [cell.cellExtraInfo setText:[NSString stringWithFormat:@"%i %@",[SharedAppDelegate.filter_selected_hotels_list count],@"Selected(H)"]];

    }

    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    return cell;
}
4

3 回答 3

7
[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
于 2012-09-21T08:33:32.503 回答
1

尝试更改UITableViewRowAnimationFadeUITableViewRowAnimationNone并让我知道这是否有帮助。

我只需要这样做,因为我在情节提要中使用了静态 UITableView,并且似乎任何动画都会将旧单元格移出视图并替换为新单元格。这基本上从表格中删除了单元格,因为旧单元格和新单元格是同一个对象(我的假设)。

于 2012-12-19T23:14:26.940 回答
0

来自 UITableView文档

beginUpdates
开始一系列插入、删除或选择接收器的行和部分的方法调用。

除非您要插入、删除或选择行或节,否则不应使用此方法。

于 2012-09-21T08:25:15.950 回答