I currently have this query for parse.com:
- (void)viewDidLoad
{
PFQuery *activityQuery = [PFQuery queryWithClassName:@"Activities"];
[activityQuery whereKey:@"triathlete" equalTo:[PFUser currentUser]];
[activityQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error) {
_activityArray = objects;
NSLog(@"activityArray = %@",_activityArray);
}
}];
And it stores all of the data from each each object in my database. My question is how can I get the data from the individual columns rather than everything in one array.
Many Thanks