1

我正在尝试使用自定义单元格EGOImageView 从此处加载来自 url 的图像。我试过

-(void)configureReviewCell:(YDRecentReviewCell*)mycell atindexpath:(int)indexPath
{

    NSURL* url = [NSURL URLWithString: tempPlace.placeProfileImageUrlString];
    NSURL* bijUrl = [NSURL URLWithString: tempPlace.bizlogo];
 EGOImageView*  urlimage = [[EGOImageView alloc] initWithPlaceholderImage:[UIImage imageNamed:@"placeholder.png"]];
    urlimage.delegate=self;
    urlimage.imageURL = bijUrl;

    mycell.topimage =urlimage;

}

但是图像未显示在表格视图中,但是如果我将其添加为单元格内容视图([mycell.contentView addsubView:url image])图像上的子视图,则会出现。我做错了什么。任何帮助,将不胜感激。

4

1 回答 1

2

请检查此行

mycell.topimage = urlimage;

确保将 topimage 作为子视图添加到 mycell 的 contentView。

这似乎是修复 -

mycell.topimage = urlimage;
[mycell.contentView addSubview:mycell.topimage];

我假设mycell.topimage 在您为其分配任何 urlimage 之前为零。并且在此分配之前没有将变量作为子视图添加到 mycell.contentView。

因此,您需要在分配后将此作为子视图添加到 mycell.contentView。

于 2013-12-18T10:03:43.290 回答