Is there any way to support AirPlay with AVPlayer? I know it can be done with MPMoviePlayerController, but I see no indication of AVPlayer support in the documentation.
I'm trying to play an MP3 file that is passed to an UIView from a previous UIView (stored in a NSURL *fileURL variable).
I'm initializing an AVPlayer with:
player = [AVPlayer playerWithURL:fileURL];
NSLog(@"Player created:%d",player.status);
The NSLog …