内のテーブルビューでインターネットからいくつかの画像を読み込んでいますcellForRowAtIndexPath。これが私のコードです:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *MyIdentifier = @"ArticleCell";
    ArticleCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    Article *article = [parser items][indexPath.row];
    cell.title.text = article.title;
    cell.newsDescription.text = article.description;
    [cell.image setImageWithURL:[NSURL URLWithString:article.image]];
    return cell;
}
私の問題は、を使用しても、SDWebImage下にスクロールすると、アプリがまだ遅れていることです。からのスクリーンショットを次に示しますInstruments。

