だから私は私のラジオアプリの私の簡単なコードを持っています:
-(IBAction)europaPlus:(id)sender{
NSLog(@"EuropaPlus work");
if (clicked == 0) {
clicked = 1;
NSString *urlAddress = @"http://cast.europaplus.ua/europaplus.aac";
NSURL *urlStream = [NSURL URLWithString:urlAddress];
radioPlus = [[AVPlayer alloc] initWithURL:urlStream];
[radioPlus play];}
else {
NSLog(@"EuropaPlus not work");
[radioPlus release];
clicked = 0;
}
}
また、私はURL接続にのみAVPLAYERを使用しましたが、MAC OSでAVPlayerのボリュームコントロールを作成する方法. IOS の MPMVolumeControl については知っていますが、mac os プロジェクトがあります。ありがとうございます。