AdvancedNSOperations
AdvancedNSOperations copied to clipboard
Objective-C implementation of concepts introduced at WWDC 2015 Session 226 Advanced NSOperations.
Unless I have completely misunderstood the code, I think that: Attribute: `@property (nonatomic, assign) CKApplicationPermissions permission;` should be: `@property (nonatomic, assign) CKApplicationPermissionStatus permission;` Obviously this type change needs to cascade...
For my own project I also ported the Apple example code from Swift over to Objective-C. I've noticed a fundamental issue however with Apple's implementation of the NSOperation subclass. I...
Check all array insertions to prevent adding a nil value
Hi, I'm really glad you did this. I was also working on porting Advanced NSOperation to Objective-C and you'd already done it and found it very helpful. Mine isn't as...