我的 UIImage 没有加载我使用 [NSData datawithContentsOfURL:] 指定的 URL,即使该 URL(看似)正确。
这是我的 configureCell: 方法:
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
NSString *url = [photoUrls objectAtIndex:indexPath.section];
cell.imageView.image = [UIImage imagewithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url]]];
}
这是“photoUrls”数组中的内容(不包括项目符号):
(
- http://fbcdn.net/fakeurl1/839.jpg
- http://fbcdn.net/fakeurl2/840.jpg
- http://fbcdn.net/fakeurl3/841.jpg
)