1
我試圖使用 SDWebImage將多個圖像從SQL設置爲表格視圖單元格。將多個圖像從SQL設置爲表格視圖單元格
我現在正在使用此代碼,但是這會根據URL加載一個圖像。
[cell.imageView setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
你將如何爲多個圖像填充imageView?謝謝。
我試着用for-loop。不起作用。
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"]];
}
謝謝。是否有任何方法使用SDWebImage獲取多個圖像? – exlux15
@ exlux15什麼是SDWebImage? – SayeedHussain
SDWebImage是一個通過緩存支持異步下載圖像的庫。 – exlux15