可能重複:
Load image to a tableView from URL iphone sdk如何將NSMutableArray的元素放入NSURL中?
我怎樣才能把NSMutableArray中的元素在圖像的網址嗎?
NSMutableArray是在ViewDidLoad函數中創建的。我相信,這個數組一切正常,因爲我NSLog它,它很好。
我也試着像這樣
NSString* myString;
myString = [data separatedWithString:@" , "];
,然後初始化與這些字符串的圖片的網址。
謝謝!
這裏是代碼的一部分:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellID = @"LinkID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
}
NSData *n = [self.data objectAtIndex:indexPath.row];
NSURL *someUrl = here I have to put the url of the images
[cell.imageView setImageWithURL:someUrl placeholderImage:[UIImage imageNamed:@"placeholder"]];
cell.textLabel.text = [n description];
return cell;
}
可能的重複 - http://stackoverflow.com/questions/7565123/load-image-to-a -tableview-from-url-iphone-sdk http://stackoverflow.com/questions/8390151/loading-images-from-a-url-into-a-uitableviewcells-uiimageview – ignotusverum
謝謝你,匿名! – Costa