自定义UITableView不刷新单元格

时间:2011-06-14 12:10:26

标签: objective-c ios uitableview ios4

我正在创建自定义UITableViewCells。我使用NIB文件作为单元格。它显示来自REST API的一些数据。我遇到的问题是当我向下滚动时然后备份,细胞不会刷新。它显示了我向下滚动时的数据。这是我的代码 -

MyViewController.h

@interface FLOViewController : UIViewController <UISearchBarDelegate, 
UITableViewDelegate, 
UITableViewDataSource>
{
    UISearchBar *sBar;
    UITableView *searchResTable;
    NSArray *searchRes;
    UITableViewCell *resultsOne;
}

@property (nonatomic, retain) IBOutlet UILabel *photos;
@property(nonatomic, retain) IBOutlet UITableView *searchResTable;
@property (nonatomic, retain) NSArray *searchRes;

/* Search Results Templates */
@property (nonatomic, assign) IBOutlet UITableViewCell *resultsOne;

MyViewController.m

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(self.searchRes == nil)
        return nil;

    static NSString *cId  = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cId];
    if(cell == nil)
    {
        NSLog(@"CREATING NEW CELL");
        [[NSBundle mainBundle] loadNibNamed:@"ResultsOne" owner:self options:nil];
        cell            = self.resultsOne;
        self.resultsOne = nil;
    }
    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    //from here on displaying images etc from REST API.
    UIImageView *uPhoto = (UIImageView *)[cell viewWithTag:2];
NSString *photoURL  = [[self.searchRes objectAtIndex:[indexPath row]] objectForKey:@"originator_photo_url"];
if(photoURL)
{
    [UIView beginAnimations:@"fadeIn" context:NULL];
    [UIView setAnimationDuration:0.5];

    NSString *urlString = [NSString stringWithString:photoURL];
    [uPhoto setImageWithURL:[NSURL URLWithString:urlString] 
           placeholderImage:[UIImage imageNamed:[NSString stringWithFormat:@"ph%d.png",[indexPath row]]]];

    [UIView commitAnimations];
}

    //similarly display other sections in the cell...

为什么我的手机内容没有刷新?即使我输入了全新的数据(通过REST API搜索),一些单元格仍会在表格中显示旧视图。

更新:如果我注释掉UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cId];,那么问题就解决了。即我在滚动时看不到重复的细胞内容。

因为我在ImageViews中创建自定义UITableViewCell,我是否需要做一些特殊的事情来清除单元格内容才能添加新内容?

2 个答案:

答案 0 :(得分:2)

对我来说,如果photoURL为零,你似乎忘了重置uPhoto-UIImageView。这会带来缓存数据。

if (photoURL) {
   ...
}
else {
  uPhoto.image = nil;
}

答案 1 :(得分:0)

您正在使用

static NSString *cId  = @"Cell";

让我们为每个细胞尝试不同的标识符。我面对这个问题并通过使用不同的单元标识符来解决它,如

static NSString *cId  =[NSString StringWithFormat : @"Cell_%d_%d",[indexPath section], [indexPath row] ];

我认为它可以解决您的问题。