1

「このクエリには未解決のネットワーク接続があります。」というメッセージが表示されます。

一度に 1 つのクエリしか許可されていないことはわかっています。それがここで行っていることだと思いますが、明らかにそうではありません..

retrieveFromParse は viewDidLoad にあります。

-(void) retrieveFromParse{

    PFQuery *query = [PFQuery queryWithClassName:self.parseClassName];
    [query whereKey:@"photo" equalTo:[PFObject objectWithoutDataWithClassName:@"photoObject" objectId:self.currentObjectID]];
    [query orderByDescending:@"createdAt"];

    [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
        if (!error) {
        // The find succeeded.
            NSLog(@"Successfully retrieved %d scores.", (int)objects.count);
            // Do something with the found objects
            for (PFObject *object in objects) {
                NSLog(@"%@", object.objectId);

                self.commentArray = [object objectForKey:@"comment"];
            }
        } else {
            // Log details of the failure
            NSLog(@"Error: %@ %@", error, [error userInfo]);
        }
    }];

    // If no objects are loaded in memory, we look to the cache
    // first to fill the table and then subsequently do a query
    // against the network.
    if ([self.objects count] == 0) {
        query.cachePolicy = kPFCachePolicyCacheThenNetwork;
    }
}


- (id)initWithStyle:(UITableViewStyle)style currentObjectID:(NSString*) currentObjectID {
    self = [super initWithStyle:style];
    if (self) {

        self.currentObjectID = currentObjectID;

        self.parseClassName = @"extra";
        self.pullToRefreshEnabled = YES;
        self.paginationEnabled = NO;
        self.objectsPerPage = 25;

    }
    return self;
}
4

1 に答える 1