我在以下期间将imageview加载到UITableViewCell时遇到了一个奇怪的问题:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
这是我的代码:
UIImageView *title = [[[UIImageView alloc] initWithFrame:CGRectMake(0,10,300,150)] autorelease];
title.image = [UIImage imageNamed:@"featured_graphic.png" ];
title.contentMode = UIViewContentModeScaleAspectFill;
title.alpha = 1.0;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
它的内部:
if( [indexPath isEqual:[NSIndexPath indexPathForRow:0 inSection:0]] )
{
}
我确认features_graphic.png在我的申请表中。
答案 0 :(得分:2)
您制作标题,但实际上并未将其添加到视图中。
[cell.contentView addSubview:title];