我尝试使用 SDWebImage 将 SQL 中的多个图像设置为表视图单元格。
我现在正在使用此代码,但这会根据 URL 加载一个图像。
[cell.imageView setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
您将如何为多个图像填充 imageView?谢谢。
我尝试使用 for 循环。不工作。
NSArray *itmImageArray = [self itemImages];
for(int i = 0; i <= [itmImageArray count]; i++)
{
[cell.imageView setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/%@",[itmImageArray objectAtIndex:i]]
placeholderImage:[UIImage imageNamed:@"addnewimage.png"]];
}