4

我正在使用 AFNetworking 在 UITableViewCell 中插入图像。问题是我需要滚动表格才能看到图像。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    Recipe *recipe = [self.fetchedResultsController objectAtIndexPath:indexPath];
    cell.textLabel.text = recipe.value;
    NSURL *url = [NSURL URLWithString:[BaseURLString stringByAppendingString:recipe.img]];
   [cell.imageView setImageWithURL:url];
    return cell;
}
4

7 回答 7

4

AFNetworking 在 UIImageView+AFNetworking 类别中已经实现了这样的方法。

[imageView setImageWithURLRequest:request placeholderImage:nil success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {
    blockImageView.image = image;
} failure:nil];

请注意,如果您成功传入 nil,则图像将设置为您调用该方法的图像视图。在我的情况下,imageView。

所以在这里我猜你可以根据需要重新加载数据。

于 2013-10-09T10:58:43.733 回答
1

除了Peter Segerblom 的回答之外,我还建议使用__weak引用代替__blockblockImageVariable 变量来避免保留循环。

如果您只使用__block,则永远不会释放 imageView 的副本,并且即使在 tableView 消失后计数也将始终保持不变,因为指针正在引用另一个内存地址。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    cell.textLabel.text = @"Cell text";

    NSURLRequest *request = [NSURLRequest requestWithURL:imageURL];
    __weak UITableView *weakTableView = tableView;
    __weak UITableViewCell *weakCell = cell;
    __weak UIImageView *weakImageView = cell.imageView;
    [cell.imageView setImageWithURLRequest:request
                          placeholderImage:placeholderImage
                                   success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {
                                       weakImageView.image = image;
                                       if ([weakTableView.visibleCells containsObject:weakCell]) {
                                           [weakTableView reloadRowsAtIndexPaths:@[ indexPath ] withRowAnimation:UITableViewRowAnimationNone];
                                       }
                                 } failure:nil];

    return cell;
}
于 2014-01-28T05:19:30.020 回答
1

@pxpgraphics:我不得不更换

NSURLRequest *request = [NSURLRequest requestWithURL:imageURL];

NSURLRequest *request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:imageURL]];

以防止运行时错误。

于 2014-05-18T17:23:20.170 回答
1

斯威夫特等效:

let request = NSURLRequest(URL: book.mediumImageURL)
cell.imageView.setImageWithURLRequest(request, placeholderImage: nil, success: { [weak cell] request, response, image in
    if cell {
        cell!.imageView.image = image
    }

    if tableView.visibleCells().bridgeToObjectiveC().containsObject(cell) {
        tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
    }
}, failure:nil)
于 2014-06-24T08:52:09.793 回答
1

我认为这是最好的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"SimpleTableItem";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    NSURL *url = [NSURL URLWithString:@"http://www.myimageurl.com"];  //Change this URL];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    __weak UITableViewCell *weakCell = cell;
    __weak UIImageView *weakImageView = cell.imageView;
    [cell.imageView setImageWithURLRequest:request placeholderImage:[UIImage imageNamed:@"granaziOrange"] success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {
        weakImageView.image = image;
        [weakCell setNeedsLayout];
    } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
        NSLog(@"Failed to get image");
    }];
    return cell;
}
于 2015-02-10T13:58:55.467 回答
0

这篇文章有一个有效的答案:http: //jabbleashish.blogspot.com/2013/12/setting-uitableviewcell-imageview-via.html

NSURLRequest *imageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"YOUR_URL"]];
[cell.imageView setImageWithURLRequest:imageRequest placeholderImage:nil
success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image){
        NSLog(@"success");
        cell.imageView.image = image;
        cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
        cell.imageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
        [cell setNeedsLayout];// To update the cell {if not using this, your image is not showing over cell.}
}failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error){
        NSLog(@"Failure");}

这看起来很简单,无需根据索引路径重新加载单元格。

于 2014-07-13T22:07:00.220 回答
0

这取决于单元格类型 - 如果您有一个自定义单元格,里面有自己的 UIImageView,请确保不要将其出口称为“imageView”!因为每个单元格内已经有内部 imageView 。我通过用 *myImageView 重命名链接的 IBOutlet 解决了这个问题,现在一切正常,代码:

[cell.myImageView setImageWithURL:[NSURL URLWithString:@"http://placehold.it/100x100"]];
于 2015-04-22T14:22:38.007 回答