Merge pull request #362 from 0xced/patch-1
Fix completionBlock setter semantics
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -17,7 +17,7 @@ | @@ -17,7 +17,7 @@ | ||
17 | @property (assign, nonatomic) NSUInteger skippedCount; | 17 | @property (assign, nonatomic) NSUInteger skippedCount; |
18 | @property (assign, nonatomic) NSUInteger finishedCount; | 18 | @property (assign, nonatomic) NSUInteger finishedCount; |
19 | @property (assign, nonatomic) NSTimeInterval startedTime; | 19 | @property (assign, nonatomic) NSTimeInterval startedTime; |
20 | -@property (SDDispatchQueueSetterSementics, nonatomic) void (^completionBlock)(NSUInteger, NSUInteger); | 20 | +@property (copy, nonatomic) void (^completionBlock)(NSUInteger, NSUInteger); |
21 | 21 | ||
22 | @end | 22 | @end |
23 | 23 |
-
Please register or login to post a comment