我在.xib中有一个表视图单元格。我在.xib中有一个UILabel和UIImageView。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
SchoolsTableViewCell *cell = (SchoolsTableViewCell *) [[[NSBundle mainBundle] loadNibNamed:@"SchoolsTableViewCell" owner:self options:nil] lastObject];
NSLog(@"Before: %@", cell.nameLabel.text);
cell.nameLabel.text = [NSString stringWithFormat:@"Name: %@", [object objectForKey:@"name"]];
NSLog(@"After: %@", cell.nameLabel.text);
PFFile *file = [object objectForKey:@"logo"];
[file getDataInBackgroundWithBlock:^(NSData *data, NSError *error)
{
cell.logoImageView.image = [UIImage imageWithData:data];
}];
return cell;
}
如您所见,我有2个NSLog(),打印如下:
2015-07-08 20:17:26.739 o [1871:108786] Before: (null)
2015-07-08 20:17:26.740 o [1871:108786] After: Name: SMSAS
这是预期的。
但是,在我的模拟器上,我只能看到一个名为的空白单元格:它应该在标签中显示SMSAS并加载徽标,但它没有发生。我可以在点击单元格时将对象传递给下一个View Controller,它可以在该View Controller中显示。
这是我的小单位。
@implementation SchoolsTableViewCell
- (void)awakeFromNib
{
[super awakeFromNib];
self.nameLabel = [[UILabel alloc] init];
self.logoImageView = [[UIImageView alloc] init];
[self.contentView addSubview:self.nameLabel];
[self.contentView addSubview:self.logoImageView];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
}
@end
我确定这是一个简单的错误。有人想睁开眼睛吗?谢谢!
答案 0 :(得分:1)
使用dequeueReusableCellWithIdentifier
static NSString * CellIdentifier = @"SchoolsTableViewCell";
SchoolsTableViewCell *cell = (SchoolsTableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"SchoolsTableViewCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}