I retrieve an array from Imgur API but I don't know what it contains, how can I see the composition of the Array since the API did not specify the compositions.
[IMGGalleryRequest hotGalleryPage:0 success:^(NSArray *objects) {
self.wallObjectsArray = nil;
self.wallObjectsArray = [[NSArray alloc] initWithArray:objects];
[self loadWallViews];
} failure:^(NSError *error) {
//Remove the activity indicator
[self.activityIndicator stopAnimating];
[self.activityIndicator removeFromSuperview];
//Show the error
NSString *errorString = [[error userInfo] objectForKey:@"error"];
[self showErrorView:errorString];
}];
}