菜鸟教程小白 发表于 2022-12-13 16:43:40

objective-c - iOS中UITableView异步加载图片的建议


                                            <p><p>我目前正在使用以下代码加载带有左侧缩略图、标题和副标题的表格:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @&#34;cell&#34;;

    UITableViewCell *cell = ;

    if (cell == nil) {

      cell = [ initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    NSDictionary *post         = ;

    cell.textLabel.text       = ;
    cell.detailTextLabel.text = ;

    NSString *postpictureUrl = ;
    NSData   *data         = ];

    cell.imageView.image = ;

    return cell;
}
</code></pre>

<p>当然,由于我在这里进行同步加载,这在生产中不起作用。</p>

<p>您对在这种情况下异步加载图像有什么建议?</p>

<p>我找到了 <a href="https://github.com/AFNetworking/AFNetworking" rel="noreferrer noopener nofollow">AF Networking</a> (还没有使用过)但想知道是否有更轻量级的方法来解决这个问题。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>AsyncImageView</code> 是你的 friend ,看看<a href="https://github.com/nicklockwood/AsyncImageView" rel="noreferrer noopener nofollow">here</a> .</p>

<p>只需设置 <code>imageURL</code> 即可。</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - iOS中UITableView异步加载图片的建议,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12654192/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12654192/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - iOS中UITableView异步加载图片的建议