0

我看到了几个与我相似的问题,但没有一个回答了我的问题我有一个 UITableview 有自定义单元格。

我的视图层次结构:

我有一个主 UIViewController,其中有一个 UITableViewController ** **UITableViewController 有一个自定义 UITableViewCell

当我加载 UIViewController 时,单元格看起来很完美,但是当我向下/向上滚动时,表格被清除,没有任何东西留在那里......

继承人的方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"CustomCellReuseID";
    EXCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[EXCustomCell alloc] initWithStyle:UITableViewCellStyleDefault 
                                   reuseIdentifier:CellIdentifier];
    }

    Post *post = [posts objectAtIndex:indexPath.row];
    cell.imgBack.image=post.cover_img_url;
    cell.imgProf.image=post.profile_img_url;
    cell.lblValidUntil.text = post.exp_date;
    cell.lblPost.text       = post.sentence;
    cell.lblLocation.text   = post.location;

    return cell;
}

这里是viewdidload:

- (void)viewDidLoad
{
     [self.tableView registerNib:[UINib nibWithNibName:@"EXCustomCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"CustomCellReuseID"];
}

最后是自定义单元类

.m 文件:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

.h 文件:

@property (weak, nonatomic) IBOutlet UIImageView *imgBack;
@property (weak, nonatomic) IBOutlet UIImageView *imgProf;
@property (weak, nonatomic) IBOutlet UILabel *lblPost;
@property (weak, nonatomic) IBOutlet UILabel *lblValidUntil;
@property (weak, nonatomic) IBOutlet UILabel *lblLocation;

我试图到处寻找,但找不到问题。

多谢

4

0 回答 0