1

我正在尝试从 url 插入和图像到 UIImageView 中。我使用以下代码来执行此操作。运行程序时卡在

NSURL *url = [NSURL URLWithString:urlstring];

在下面的代码中,它在该特定行上显示“线程 1:信号 SIGABRT”。有人可以帮我看看我使用的格式是正确的还是我做错了什么?

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"newoffer";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell==nil)
{
    cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSDictionary *temp = [product objectAtIndex:indexPath.row];
UILabel *Label = (UILabel *)[cell viewWithTag:201];
Label.text = [temp objectForKey:@"item_name"];
UIImageView *Image = (UIImageView *)[cell viewWithTag:200];
NSString *urlstring=[temp objectForKey:@"image_url"];
NSURL *url = [NSURL URLWithString:urlstring];
NSData *data = [NSData dataWithContentsOfURL:url];
Image.image = [UIImage imageWithData:data];

return cell;

}
4

4 回答 4

8

更改此代码:

NSURL *url = [NSURL URLWithString:urlstring];
NSData *data = [NSData dataWithContentsOfURL:url];
Image.image = [UIImage imageWithData:data];

至:

 dispatch_queue_t myqueue = dispatch_queue_create("myqueue", NULL);

    // execute a task on that queue asynchronously
    dispatch_async(myqueue, ^{
NSURL *url = [NSURL URLWithString:[urlstring stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];;
NSData *data = [NSData dataWithContentsOfURL:url];
 dispatch_async(dispatch_get_main_queue(), ^{
Image.image = [UIImage imageWithData:data]; //UI updates should be done on the main thread
     });
    });

正如其他人所提到的,像 SDWebImage 这样的图像缓存库将有很大帮助,因为即使使用此实现,您只需将下载过程推送到后台线程,这样 UI 就不会卡住,但您不会缓存任何内容。

于 2013-11-15T09:30:16.560 回答
3

尝试这个

[image setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.vbarter.com/images/content/1/9/19517.jpg"]]]];

对于异步下载

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

[image setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.vbarter.com/images/content/1/9/19517.jpg"]]]];

});

如果 url 是动态的,那么

NSString *stringUrl; // this can be any valid url as string

[image setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:stringUrl]]]];
于 2013-11-15T09:25:17.287 回答
0

NSData *data = [NSData dataWithContentsOfURL:url];

将同步加载 imageData,这意味着主线程将被阻塞。

使用 github 上的项目:SDWebImage进行图片异步加载和缓存。

于 2013-11-15T09:21:58.603 回答
0

现在可能有更好的库可以做到这一点,但我一直在我的项目中使用它并且效果很好:AsyncImageView。还有其他选择,例如SDWebImage

但基本上,你不想使用

NSData *data = [NSData dataWithContentsOfURL:url];

因为它会阻塞主线程,直到图像被下载。为避免这种情况,您可能需要使用异步的东西,例如上述两个库。

例如,使用AsyncImageView,它变得如此简单:

myImageView.imageURL = someNSURL;
于 2013-11-15T09:22:46.707 回答