Parse findObjectsInBackground возвращает пустой массив - PullRequest
0 голосов
/ 15 февраля 2019

Я использую Parse v1.17.2.

У меня есть PFQuery, который должен возвращать объекты удаленно в фоновом режиме.

//* ObjC *
PFQuery *custQuery = [CustomSentences query];
[custQuery fromLocalDatastore];
[custQuery whereKey:[CustomSentences userRef] equalTo:[PFUser currentUser]];
[custQuery whereKey:[CustomSentences visibility] equalTo:[NSNumber numberWithBool:YES]];
[custQuery orderByDescending:[CustomSentences updatedAt]];
[custQuery findObjectsInBackgroundWithBlock:^(NSArray *localObjects, NSError *error){
    localObjects = [ParseUtils removeInvalidObjects:localObjects];
    cust(localObjects,error);
    PFQuery *custRQuery = [CustomSentences query];
    [custRQuery whereKey:[CustomSentences userRef] equalTo:[PFUser currentUser]];
    [custRQuery findObjectsInBackgroundWithBlock:^(NSArray *remoteObjects, NSError *error){
        remoteObjects = [ParseUtils removeInvalidObjects:remoteObjects];
        NSLog(@"Local Object Count : %lu ; Remote Object Count : %lu",(unsigned long)[localObjects count],[remoteObjects count]);
    }];
}];

Массив удаленных объектов всегда пуст.Пожалуйста помоги.Как мне отладить это ..

...