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
Plain Diff
Browse Files
Authored by
Olivier Poitrey
2012-12-13 15:25:28 -0800
Commit
7cd4d8e155059e1fe9b2676da139c2c2c4d278c8
2 parents
37f71de2
7ba77023
Merge pull request #249 from matej/early-progress-callback
Early progress callback
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
SDWebImage.xcodeproj/project.pbxproj
SDWebImage/SDWebImageDownloaderOperation.m
SDWebImage.xcodeproj/project.pbxproj
View file @
7cd4d8e
...
...
@@ -140,6 +140,7 @@
53922D70148C55820056699D /* Products */,
);
sourceTree = "<group>";
usesTabs = 0;
};
53922D70148C55820056699D /* Products */ = {
isa = PBXGroup;
...
...
SDWebImage/SDWebImageDownloaderOperation.m
View file @
7cd4d8e
...
...
@@ -71,6 +71,10 @@
if
(
self
.
connection
)
{
if
(
self
.
progressBlock
)
{
self
.
progressBlock
(
0
,
-
1
);
}
[[
NSNotificationCenter
defaultCenter
]
postNotificationName
:
SDWebImageDownloadStartNotification
object
:
self
];
}
else
...
...
Please
register
or
login
to post a comment