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;
}