在iOS編程中SDWebImage這個開源的第三方庫基本上每位開發(fā)者都使用過,我們從使用方法入手,去思考他的內(nèi)部實現(xiàn)压昼。
使用部分
第一步,下載SDWebImage瘤运,導(dǎo)入工程窍霞。github托管地址https://github.com/rs/SDWebImage
第二步,在需要的地方導(dǎo)入頭文件
#import "UIImageView+WebCache.h"
第三步拯坟,調(diào)用sd_setImageWithURL:方法緩存圖片但金,注意,這就是新版本的新方法郁季,舊方法是setImageWithURL:冷溃。下面將幾個方法都介紹一下。
- sd_setImageWithURL:
//圖片緩存的基本代碼梦裂,就是這么簡單
[self.image1 sd_setImageWithURL:imagePath1];
- sd_setImageWithURL: completed:
[self.image2 sd_setImageWithURL:imagePath2 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
NSLog(@"這里可以在圖片加載完成之后做些事情");
}];
- sd_setImageWithURL: placeholderImage:
[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"]];
- sd_setImageWithURL: placeholderImage: completed:
[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
NSLog(@"圖片加載完成后做的事情")似枕;
}];
- sd_setImageWithURL: placeholderImage: options:
[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"] options:SDWebImageRetryFailed];
OC是自文檔語言,看方法名就知道干什么的了年柠。除了帶options選項的方法凿歼,其他的方法都是綜合存儲,也就是內(nèi)存緩存和磁盤緩存結(jié)合的方式冗恨,如果你只需要內(nèi)存緩存答憔,那么在options這里選擇SDWebImageCacheMemoryOnly就可以了。
option的意義以及內(nèi)部實現(xiàn)的流程
SDWebImageRetryFailed = 1 << 0,
//UI交互期間開始下載掀抹,導(dǎo)致延遲下載比如UIScrollView減速虐拓。
SDWebImageLowPriority = 1 << 1,
//只進行內(nèi)存緩存
SDWebImageCacheMemoryOnly = 1 << 2,
//這個標志可以漸進式下載,顯示的圖像是逐步在下載
SDWebImageProgressiveDownload = 1 << 3,
//刷新緩存
SDWebImageRefreshCached = 1 << 4,
//后臺下載
SDWebImageContinueInBackground = 1 << 5,
//NSMutableURLRequest.HTTPShouldHandleCookies = YES;
SDWebImageHandleCookies = 1 << 6,
//允許使用無效的SSL證書
//SDWebImageAllowInvalidSSLCertificates = 1 << 7,
//優(yōu)先下載
SDWebImageHighPriority = 1 << 8,
//延遲占位符
SDWebImageDelayPlaceholder = 1 << 9,
//改變動畫形象
SDWebImageTransformAnimatedImage = 1 << 10,
內(nèi)部實現(xiàn)
1.入口 setImageWithURL:placeholderImage:options: 會先把 placeholderImage 顯示,然后 SDWebImageManager 根據(jù) URL 開始處理圖片渴丸。
2.進入 SDWebImageManager-downloadWithURL:delegate:options:userInfo:侯嘀,交給 SDImageCache 從緩存查找圖片是否已經(jīng)下載 queryDiskCacheForKey:delegate:userInfo:.
3.先從內(nèi)存圖片緩存查找是否有圖片另凌,如果內(nèi)存中已經(jīng)有圖片緩存,SDImageCacheDelegate 回調(diào) imageCache:didFindImage:forKey:userInfo: 到 SDWebImageManager戒幔。
4.SDWebImageManagerDelegate 回調(diào) webImageManager:didFinishWithImage: 到 UIImageView+WebCache 等前端展示圖片吠谢。
5.如果內(nèi)存緩存中沒有,生成 NSInvocationOperation 添加到隊列開始從硬盤查找圖片是否已經(jīng)緩存诗茎。
6.根據(jù) URLKey 在硬盤緩存目錄下嘗試讀取圖片文件工坊。這一步是在 NSOperation 進行的操作,所以回主線程進行結(jié)果回調(diào) notifyDelegate:敢订。
7.如果上一操作從硬盤讀取到了圖片王污,將圖片添加到內(nèi)存緩存中(如果空閑內(nèi)存過小,會先清空內(nèi)存緩存)楚午。SDImageCacheDelegate 回調(diào) imageCache:didFindImage:forKey:userInfo:昭齐。進而回調(diào)展示圖片。
8.如果從硬盤緩存目錄讀取不到圖片矾柜,說明所有緩存都不存在該圖片阱驾,需要下載圖片,回調(diào) imageCache:didNotFindImageForKey:userInfo:怪蔑。
9.共享或重新生成一個下載器 SDWebImageDownloader 開始下載圖片里覆。
10.圖片下載由 NSURLConnection 來做,實現(xiàn)相關(guān) delegate 來判斷圖片下載中缆瓣、下載完成和下載失敗喧枷。
11.connection:didReceiveData: 中利用 ImageIO 做了按圖片下載進度加載效果。
12.connectionDidFinishLoading: 數(shù)據(jù)下載完成后交給 SDWebImageDecoder 做圖片解碼處理弓坞。
13.圖片解碼處理在一個 NSOperationQueue 完成隧甚,不會拖慢主線程 UI。如果有需要對下載的圖片進行二次處理昼丑,最好也在這里完成呻逆,效率會好很多夸赫。
14.在主線程 notifyDelegateOnMainThreadWithInfo: 宣告解碼完成菩帝,imageDecoder:didFinishDecodingImage:userInfo: 回調(diào)給 SDWebImageDownloader。
15.imageDownloader:didFinishWithImage: 回調(diào)給 SDWebImageManager 告知圖片下載完成茬腿。
16.通知所有的 downloadDelegates 下載完成呼奢,回調(diào)給需要的地方展示圖片。
17.將圖片保存到 SDImageCache 中切平,內(nèi)存緩存和硬盤緩存同時保存握础。寫文件到硬盤也在以單獨 NSInvocationOperation 完成,避免拖慢主線程悴品。
18.SDImageCache 在初始化的時候會注冊一些消息通知禀综,在內(nèi)存警告或退到后臺的時候清理內(nèi)存圖片緩存简烘,應(yīng)用結(jié)束的時候清理過期圖片。
19.SDWI 也提供了 UIButton+WebCache 和 MKAnnotationView+WebCache定枷,方便使用孤澎。
20.SDWebImagePrefetcher 可以預(yù)先下載圖片,方便后續(xù)使用欠窒。
//覆蓋方法覆旭,指哪打哪,這個方法是下載imagePath2的時候響應(yīng)
SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager downloadImageWithURL:imagePath2 options:SDWebImageRetryFailed progress:^(NSInteger receivedSize, NSInteger expectedSize) {
NSLog(@"顯示當前進度");
} completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
NSLog(@"下載完成");
}];