Streaming Radio

#import <MediaPlayer/MPMoviePlayerController.h>

MPMoviePlayerController* player;
NSURL *theURL = [NSURL URLWithString:@"http://someurl.com"];
player = [[MPMoviePlayerController alloc] initWithContentURL:theURL];
[player prepareToPlay];
...
[player play];