gpt4 book ai didi

iphone - UITableViewCell imageView 不显示

转载 作者:可可西里 更新时间:2023-11-01 03:38:51 24 4
gpt4 key购买 nike

所以我有以下代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *CellIdentifier = @"FriendsCell";

FriendData * fd = [self.friendsDataSource_ objectAtIndex:indexPath.row];

UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

[cell.imageView setImageWithURL:[NSURL URLWithString:fd.imageUrl_]];
[cell.imageView setFrame:CGRectMake(0, 0, 30, 30)];
[cell.textLabel setText:fd.name_];

return cell;
}

但是,我没有在单元格中看到 imageView。我做错了什么?

最佳答案

我对 SDImageCache 也有同样的问题。我的解决方案是放置一个具有您想要的帧大小的占位符图像。

 UIImage *placeholder = [UIImage imageNamed:@"some_image.png"];
[cell.imageView setImage:placeholder];
[cell.imageView setImageWithURL:[NSURL URLWithString:fd.imageUrl_]];

关于iphone - UITableViewCell imageView 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10709384/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com