Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
yh_sdwebimage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
kawanet
2012-12-25 22:02:48 +0900
Commit
e8b1532cbaeb7c5f2c37eaddf0a5dffcb4cb8927
1 parent
c876cafa
isRunning method added at SDWebImageManager
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
SDWebImage/SDWebImageManager.h
SDWebImage/SDWebImageManager.m
SDWebImage/SDWebImageManager.h
View file @
e8b1532
...
...
@@ -118,4 +118,9 @@ typedef void(^SDWebImageCompletedWithFinishedBlock)(UIImage *image, NSError *err
*/
-
(
void
)
cancelAll
;
/**
* Check one or more operations running
*/
-
(
BOOL
)
isRunning
;
@end
...
...
SDWebImage/SDWebImageManager.m
View file @
e8b1532
...
...
@@ -134,6 +134,11 @@
});
}
-
(
BOOL
)
isRunning
{
return
self
.
runningOperations
.
count
>
0
;
}
@end
@implementation
SDWebImageCombinedOperation
...
...
Please
register
or
login
to post a comment