previewStream is a NSString with the following code
AJSITunesClient *client = [AJSITunesClient sharedClient];
[client searchMedia:[NSString stringWithFormat:@"%@ %@", self.text[0], self.text[1]] completion:^(NSArray *results, NSError *error) {
NSLog(@"Finished with results: %@", results);
if (results.firstObject) {
NSURL *previewStream = ((AJSITunesResult *)results.firstObject).previewURL;
[self.audioPlayer play:previewStreamString];
}
}];
previewStream is a NSString with the following code