//下載圖片獲取下載進(jìn)度??
//頭文件導(dǎo)入
[self.myimage sd_setImageWithURL:[NSURL URLWithString:@""] placeholderImage:[UIImage imageNamed:@""] options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) {? ? ? ? ? ? } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {? ? ? ? ? ? }];? ?
//只需要簡(jiǎn)單獲取圖片
//內(nèi)存緩存&磁盤緩存? ? 頭文件導(dǎo)入
[[SDWebImageManager sharedManager]downloadImageWithURL:[NSURL URLWithString:@""] options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) {? ? ? ? ? ? } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {? ? ? ? self.myimage.image = image;
? }];? ?
//不需要任務(wù)的緩存處理? 頭文件導(dǎo)入
[[SDWebImageDownloader sharedDownloader]downloadImageWithURL:[NSURL URLWithString:@""] options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) {
} completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
[[NSOperationQueue mainQueue]addOperationWithBlock:^{
self.myimage.image = image;
}];
}];