如何将 NSMutableArray 的元素放在图像的 url 中?
NSMutableArray 在 ViewDidLoad 函数中创建。我敢肯定,这个数组一切正常,因为我 NSLog 它并且它很好。
我也尝试过这样的事情
NSString* myString;
myString = [data separatedWithString:@" , "];
然后用这些字符串初始化图像的 url。
先感谢您!!!
这是代码的一部分:
- (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;
}