SDWebImage学习

2017-03-06  本文已影响0人  夏天的风_song

一、一些使用文件的翻译


HowToUse.md

在tableView里使用UIImageView+WebCache 这个类别
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *MyIdentifier = @"MyIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                       reuseIdentifier:MyIdentifier] autorelease];
    }

    // Here we use the new provided sd_setImageWithURL: method to load the web image
    [cell.imageView sd_setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
                      placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

    cell.textLabel.text = @"My Text";
    return cell;
}
import SDWebImage
...
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
    static let myIdentifier = "MyIdentifier"
    let cell = tableView.dequeueReusableCellWithIdentifier(myIdentifier, forIndexPath: indexPath) as UITableViewCell

    cell.imageView.sd_setImageWithURL(imageUrl, placeholderImage:placeholderImage)
    return cell
使用block

在block里面,你可以就下载进度进行通知,也可以就图片下载完成或者是失败进行通知

// Here we use the new provided sd_setImageWithURL: method to load the web image
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
                  placeholderImage:[UIImage imageNamed:@"placeholder.png"]
                         completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
                                ... completion code here ...
                             }];

注意:如果你的图片下载请求在图片下载完成前取消了,那么它既不会进入成功回调的block,也不会进入失败回调的block
Note: neither your success nor failure block will be call if your image request is canceled before completion.

使用SDWebImageManager

SDWebImageManagerUIImageView(WebCache)的子类,它把异步下载和图片缓存结合起来,从web上下载的缓存到本地的图片,在别的情况下用的的时候,你可以直接使用他。
The `SDWebImageManager` is the class behind the `UIImageView(WebCache)` category. It ties the asynchronous downloader with the image cache store. You can use this class directly to benefit from web image downloading with caching in another context than a `UIView` (ie: with Cocoa).

下面这个例子说明如何使用SDWebImageManager
SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager loadImageWithURL:imageURL
                  options:0
                 progress:^(NSInteger receivedSize, NSInteger expectedSize) {
                        // progression tracking code
                 }
                 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
                    if (image) {
                        // do something with image
                    }
                 }];
单独使用异步下载
SDWebImageDownloader *downloader = [SDWebImageDownloader sharedDownloader];
[downloader downloadImageWithURL:imageURL
                         options:0
                        progress:^(NSInteger receivedSize, NSInteger expectedSize) {
                            // progression tracking code
                        }
                       completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
                            if (image && finished) {
                                // do something with image
                            }
                        }];

单独使用异步图片缓存

objective-c:
SDImageCache *imageCache = [[SDImageCache alloc] initWithNamespace:@"myNamespace"];
[imageCache queryDiskCacheForKey:myCacheKey done:^(UIImage *image) {
    // image is not nil if image was found
}];
[[SDImageCache sharedImageCache] storeImage:myImage forKey:myCacheKey];
objective-c
[[SDImageCache sharedImageCache] storeImage:myImage forKey:myCacheKey];

默认情况下,图片将被保存到内存中,同时也保存在磁盘上(他们是异步执行的)。如果,你只想让他保存在磁盘上,你可以替代方法storeImage:forKey:toDisk:,第三个参数填:NO

使用缓存键过滤器

有时,您可能不想使用图片网址作为缓存键,因为网址的一部分是动态的(即:用于访问控制目的)。 SDWebImageManager提供了一种设置缓存密钥过滤器的方法
以NSURL作为输入,并输出高速缓存密钥NSString。

以下示例在应用程序委托中设置一个过滤器,它将从中删除任何查询字符串在使用它之前的URL作为缓存键:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    SDWebImageManager.sharedManager.cacheKeyFilter = ^(NSURL *url) {
        url = [[NSURL alloc] initWithScheme:url.scheme host:url.host path:url.path];
        return [url absoluteString];
    };

    // Your app init code...
    return YES;
}

ManualInstallation.md

为获得所有文件的使用权限,你需要clone他
git clone --recursive https://github.com/rs/SDWebImage.git
检查一下依赖库和描述文件
添加依赖库
添加连接标识(Add Linker Flag)
-force_load SDWebImage.framework/Versions/Current/SDWebImage

如果你用的是Cocoa Pods,并且有同样的问题,用下列方式代替" -ObjC flag"

-force_load $(TARGET_BUILD_DIR)/libPods.a
$(inherited)
上一篇 下一篇

猜你喜欢

热点阅读