0

重複の可能性:
URL iphone sdk から tableView に画像をロードする

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;

    }
4

1 に答える 1

-1

これを試して:

NSEnumerator* e = [arrayInstance objectEnumerator];
NSURL *someUrl;
while (someUrl = [e nextObject]) {
   // do your thing here with someUrl
}
于 2012-11-11T17:30:29.920 に答える