UIImageView.image没有加载

时间:2011-11-12 23:49:15

标签: iphone xcode uiimageview

我在以下期间将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在我的申请表中。

1 个答案:

答案 0 :(得分:2)

您制作标题,但实际上并未将其添加到视图中。

[cell.contentView addSubview:title];