OpenCloudKit icon indicating copy to clipboard operation
OpenCloudKit copied to clipboard

Open Source CloudKit Framework

Results 10 OpenCloudKit issues
Sort by recently updated
recently updated
newest added

Is this still supported? Plan on updating for Swift 4? Anyway, for some strange reason fetch randomly fails because the dictionary lookup for the key returns nil! I tried various...

The current implementation assumed that all of the data would be returned with the “first batch” (i.e. the first call to [urlSession(_:dataTask:didReceive:)](https://developer.apple.com/documentation/foundation/urlsessiondatadelegate/1411528-urlsession)), which isn’t necessarily the case. This pull request...

In my scenario I was looking up a single record by its `CKRecordID`. The record fetch came back nil because when it was constructed it had a new `CKRecordID` made...

I was using Swift Package Manager to get OpenCloudKit into a generated Xcode project called Dependencies.xcodeproj, which was then imported in to my macOS app's workspace. To get rid of...

I have been able to successfully make multiple CKQueryOperations and CKQuery but have one that seems to not reliably return results but instead returns a CKErrorDomain Code = 0 error....

I implemented CKPrettyError and have used it in some of the operations but some more need changed, if you agree to how it has been implemented. It matches how ObjC...

[About CloudKit and Quality of Service](https://developer.apple.com/library/content/documentation/Performance/Conceptual/EnergyGuide-iOS/PrioritizeWorkWithQoS.html#//apple_ref/doc/uid/TP40015243-CH39-SW15) However I'm not sure if there is anything within the Swift foundation that would make use of it. Note _discretionary_ means that the operation...

Just now some of the TIMESTAMPs are created or parsed as seconds with a decimal, they should be converted to milliseconds, i.e. timeIntervalSince1970 + 1000 and rounded. I say, some...

It's quite hard to explain the reason for the callback queue but I'll try. The callback queue is what calls the `CKOperation` blocks and keeps them in order and prevents...

Do you have plans to implement the registerForNotifications feature?