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
Martin Blech
2014-06-03 11:37:22 -0300
Commit
241dafdd57eef9694f753be3fd50b46ee846ad87
1 parent
a83f4402
Synthesize `executing` and `finished` properties.
It wouldn't build on Xcode 6 otherwise.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
SDWebImage/SDWebImageDownloaderOperation.m
SDWebImage/SDWebImageDownloaderOperation.m
View file @
241dafd
...
...
@@ -39,6 +39,9 @@
BOOL
responseFromCached
;
}
@synthesize
executing
=
_executing
;
@synthesize
finished
=
_finished
;
-
(
id
)
initWithRequest
:(
NSURLRequest
*
)
request
options
:(
SDWebImageDownloaderOptions
)
options
progress
:(
void
(
^
)(
NSInteger
,
NSInteger
))
progressBlock
completed
:(
void
(
^
)(
UIImage
*
,
NSData
*
,
NSError
*
,
BOOL
))
completedBlock
cancelled
:(
void
(
^
)())
cancelBlock
{
if
((
self
=
[
super
init
]))
{
_request
=
request
;
...
...
Please
register
or
login
to post a comment