How to Fetch all data in a table using PFQuery in iOS?
问题 i am newbie here in iOS and Parse Framework i want to fetch data from my Parse table from PFQuery like as NSUInteger limit = 1500; PFQuery *query = [PFQuery queryWithClassName:@"MapInfo"]; [query setLimit: limit]; [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { if (!error) { NSLog(@"Successfully retrieved: %@", objects); } else { NSString *errorString = [[error userInfo] objectForKey:@"error"]; NSLog(@"Error: %@", errorString); } }]; it is Working as i want but