パースとの取引が何であるかはわかりませんが、何らかの理由で、取得した配列を作成した可変配列に保存することはできません。解析コード ブロックの内部では機能しますが、外部では null が表示されます。助けてください?
PFQuery *query = [PFQuery queryWithClassName:@"comments"];
[query whereKey:@"flirtID" equalTo:recipe.flirtID];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error) {
comments = [[NSMutableArray alloc]initWithArray:objects];
// Do something with the found objects
for (PFObject *object in objects) {
}
} else {
// Log details of the failure
NSLog(@"Error: %@ %@", error, [error userInfo]);
}
}];
NSLog(@"%@",[comments objectAtIndex:0]);