0
我在Back4app中有一個用戶表格。我想查詢表格。我正在使用下面的一組聲明。這是行不通的。請指教。計數總是爲零。在Back4app中查詢表格
PFQuery *query = [PFQuery queryWithClassName:@"User"];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error){
NSLog(@"%lu", objects.count);
PFObject *obj = [objects firstObject];
NSLog(@"%@", obj);
NSString *str=[obj valueForKey:@"password"];
NSLog(@"%@", str);
}];