GithubHelp home page GithubHelp logo

Comments (4)

spotlessicode avatar spotlessicode commented on July 30, 2024

1. Sync completion Block

I have found, that you call completionBlock, just if error isn't nil
So I tried, in QSCloudKitSynchronizer.m
- (void)finishSynchronizationWithError:(NSError *)error
after
QSCloudKitSynchronizerDidSynchronizeNotification
I added:
NSError *error2 = nil;
callBlockIfNotNil(self.completion, error2);

and at my App side in AppDeleagte.m
[self.synchronizer synchronizeWithCompletion:^(NSError *error) {

if((!error)||([error isEqual:[NSNull null]])){ NSLog(@"No error"); }else{ NSLog(@"error snyc end: %@", [error localizedDescription]); }

2. Table update /FRC update after sync
At the table update.. IT doesn't work after I commented out sync after creating object.. But at a clean start without any data, it works, until I call first time the self.synchronizer synchronizeWithCompletion strange. I test it more.

3. QSCloudKitSynchronizerErrorDomain Code=0
Int he last 2 hours there were nor Error Domain=QSCloudKitSynchronizerErrorDomain Code=0 "(null)" errors. But if you know, when it's happening/the meaning, please let me know.

from synckit.

spotlessicode avatar spotlessicode commented on July 30, 2024

1. Sync Completion Block

  • should I check if sync ends, for subscribing with ZONEID data changes, so the device B will know, if it changed? (Or based on your wiki, we shouldn't).
  • any other mode to be notified, if sync ends?

2. FRC
(NSFetchedResultCotnroller can't see the objects if I start sync after save and unwind)
I couldn't solve this problem in the last hours.. everything is perfect without synchronization.

3. QSCloudKitSynchronizerErrorDomain Code=0
I have again this issue but just sometimes..(when it comes, sync doesn't run, so FRC works) What causes this? could it be a poor internet connection? or what else? How could we get more error info?

from synckit.

mentrena avatar mentrena commented on July 30, 2024

Hi,

I'm trying to understand the problem, let's see.

QSCloudKitSynchronizerErrorDomain Code=0

I believe that's QSCloudKitSynchronizerErrorAlreadySyncing (definition in QSCloudKitSynchonizer.h)
Which means that your app is already in the process of synchronising data with CloudKit.
The first caller of synchronizeWithCompletion will have its completion block called when sync finishes. Successive callers will immediately receive the "already syncing" error.

So yes, it could be due to a poor connection.
Could you clarify these two things:

  • The first time you call synchronizeWithCompletion you don't get that error./
  • After you call it a second time and you get the error, can you confirm that the synchroniser is still trying to sync? (by pausing with the debugger, or looking at the debug lines being printed)

from synckit.

spotlessicode avatar spotlessicode commented on July 30, 2024

from synckit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.