iOSデバイスで.plsオーディオストリームを再生しようとしていますが、機能していないようです。これが現在行っていることです。
@synthesize player;
- (void)viewDidLoad
{
[super viewDidLoad];
self.player = [AVPlayer playerWithURL:[NSURL URLWithString:@"mypls.pls"]];
}
- (IBAction)pushStart:(id)sender {
[player play];
}