iOS - 从URL加载UIImages的更快捷方式

时间:2015-10-18 01:06:43

标签: ios objective-c uitableview uiimage

我有一个应用程序,当您第一次打开它时,主视图会获取您的所有朋友及其个人资料照片,并加载UITableView与您的朋友'每个单元格中的名称,用户名和个人资料图片。问题是UITableView加载所有朋友需要更长的时间,如果你有很多朋友,例如大约30(大约需要5-8秒)。我将所有这些图像存储在与朋友用户名相关联的字典中,以便稍后重复使用它们,但主要问题是应用程序首次启动时加载所有图像需要多长时间。这是我现在的代码,它在迭代每个朋友时执行:

[auth.loggedInUser getFriendsSuccessCallback:^(NSArray* friends){
    for (User* friend in friends) {
        if (![weakSelf.friendImageDictionary.allKeys containsObject:friend.userName])
        {
            UIImage *profilePicture;
            if (!friend.profilePicture) {
                profilePicture = [UIImage imageNamed:@"ProfilePic"];
            }
            else
            {
                NSURL *profilePictureURL = [NSURL URLWithString:friend.profilePicture];
                NSData * profilePictureData = [NSData dataWithContentsOfURL:profilePictureURL];
                profilePicture = [UIImage imageWithData:profilePictureData];
            }
            if (profilePicture == nil)
            {
                profilePicture = [UIImage imageNamed:@"ProfilePic"];
            }
            [weakSelf.friendImageDictionary setObject:profilePicture forKey:friend.userName];
        }
    }
    dispatch_async(dispatch_get_main_queue(), ^{
        [weakSelf.tableView reloadData];
    });
}

有关如何显着减少加载所有这些图像所需时间的任何建议吗?

进展:

好的,我正在使用AFNetworking使用以下代码:

[auth.loggedInUser getFriendsSuccessCallback:^(NSArray* friends){
    NSMutableArray *profilePictureRequests = [[NSMutableArray alloc] init];
    for (User* friend in friends) {
        if (![weakSelf.friendImageDictionary.allKeys containsObject:friend.userName])
        {
            if (!friend.profilePicture) {
                UIImage *profilePicture = [UIImage imageNamed:@"ProfilePic"];
                [weakSelf.friendImageDictionary setObject:profilePicture forKey:friend.userName];
            }
            else
            {
                NSURL *profilePictureURL = [NSURL URLWithString:friend.profilePicture];
                NSURLRequest *urlRequest = [NSURLRequest requestWithURL:profilePictureURL];
                AFHTTPRequestOperation *requestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest];
                requestOperation.responseSerializer = [AFImageResponseSerializer serializer];
                [requestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, UIImage* profilePicture) {
                    NSLog(@"Response: %@", profilePicture);
                    if (profilePicture == nil)
                    {
                        profilePicture = [UIImage imageNamed:@"ProfilePic"];
                    }
                    [weakSelf.friendImageDictionary setObject:profilePicture forKey:friend.userName]; 
                } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                    NSLog(@"Image error: %@", error);
                }];
                [profilePictureRequests addObject:requestOperation];
            }
        }
    }
    for (AFHTTPRequestOperation *requestOperation in profilePictureRequests)
    {
        [requestOperation start];
    }
    dispatch_async(dispatch_get_main_queue(), ^{
        [weakSelf.tableView reloadData];
        weakSelf.dashboardViewController.loadingCoverView.hidden = YES;
        [weakSelf.dashboardViewController.tableActivityIndicator stopAnimating];
        NSLog(@"FINISHED LOADING ALL PROFILE PICTURES");
    });
}

基本上我所做的是为每个需要加载的图片在AFHTTPRequestOperation中存储NSMutableArray。之后,我迭代NSMutableArray并开始每个AFHTTPRequestOperation

的问题:

这只是快速加载所有图像,但我认为我做错了。我的活动指示器的加载视图在所有图像完成下载之前完成并消失,并且在下载和添加所有图像之后应该发生时将其添加到我的NSMutableDictionary。所有UIImage下载后台主题完成后,有没有办法让我的加载视图和活动指示消失?

关于AFNetworking的其他问题:

我这样做的方式(在这种情况下同时发生大约30个图像下载后台线程)不是AFNetworking的良好做法吗?如果用户有超过100个朋友并且同时发生超过100个图像下载后台线程会导致未来出现问题吗?

2 个答案:

答案 0 :(得分:3)

你可能不会减少下载时间,但你可以让它看起来更快。

您在主线程上使用同步下载,这是一个非常糟糕的主意。

像AFNetworking这样的库可以很容易地设置异步下载。或者如果您想自己动手,可以使用NSURLSession或NSURLSession(在iOS 9中已弃用)。

答案 1 :(得分:0)

使用UIImages时,我经常使用SDWebImage:https://github.com/rs/SDWebImage

您可以查看它的README.md以获取更多具体细节,但它增加了对来自Web的远程图像的支持,与缓存异步。

使用它的一个例子:

#import <SDWebImage/UIImageView+WebCache.h>

[self.imageView sd_setImageWithURL:[NSURL URLWithString:imageURL]