Hi,
When I run any of the get commands, it returns successfully, but the result array is null, for example running
[[ItunesSearch sharedInstance] getTrackWithName:@"Welcome to the Jungle" artist:@"Guns N Roses" album:@"Appetite for Destruction" limitOrNil:nil successHandler:^(NSArray *result) {
NSLog(@"Success: %@", result);
} failureHandler:^(NSError *error) {
NSLog(@"Failure: %@", error);
}];
returns
Success: (null)
Do you have any idea why?