//下載圖片獲取下載進度??
//頭文件導入
[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) {? ? ? ? ? ? }];? ?
//只需要簡單獲取圖片
//內存緩存&磁盤緩存? ? 頭文件導入
[[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;
? }];? ?
//不需要任務的緩存處理? 頭文件導入
[[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;
}];
}];