Operative icon indicating copy to clipboard operation
Operative copied to clipboard

Advanced NSOperations

Results 6 Operative issues
Sort by recently updated
recently updated
newest added

Similar to `OPRemoteNotificationCondition`, `OPOperationConditionUserNotification` should wait for `didRegisterUserNotificationSettings` from application delegate. Currently `OPOperationConditionUserNotification` sets `alertPresentationExclusivity` and calls `registerUserNotificationSettings` but it does not wait for acknowledgment from operating system. This makes...

I found that this simply does not work: ``` objc UIUserNotificationType mergedTypes = settings.types & self.types; ``` I think bitwise OR was meant instead: ``` objc UIUserNotificationType mergedTypes = (settings.types...

Opening an issue to track the state of tests for Operative. ## Categories - [x] NSError+Operative - [x] NSMutableDictionary+Operative - [x] NSOperation+Operative - [x] UIUserNotificationSettings+Operative ## Observers - [ ]...

Opening an issue to track the state of observer and condition parity. As PRs merge in let's try and check these off. As they are implemented, let's try and reference...