forked from kevinrenskers/SDWebImage-ProgressView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIImageView+ProgressView.h
More file actions
23 lines (18 loc) · 1.58 KB
/
UIImageView+ProgressView.h
File metadata and controls
23 lines (18 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// UIImageView+ProgressView.h
//
// Created by Kevin Renskers on 07-06-13.
// Copyright (c) 2013 Kevin Renskers. All rights reserved.
//OTHER_LDFLAGS = -framework "ImageIO" -framework "M13ProgressSuite"
#import "SDWebImage/UIImageView+WebCache.h"
#import "M13ProgressSuite/M13ProgressViewRing.h"
@interface UIImageView (ProgressView)
- (void)sd_setImageWithURL:(NSURL *)url usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock usingProgressView:(M13ProgressViewRing *)progressView;
- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletionBlock)completedBlock usingProgressView:(M13ProgressViewRing *)progressView;
- (void)removeProgressView;
@end