我看到了几个类似于我的问题,但没有人回答我的问题 我有一个具有自定义单元格的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;
我试图到处寻找,但找不到问题。
非常感谢