程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> objective c-服務器的音頻文件不播放

objective c-服務器的音頻文件不播放

編輯:編程綜合問答
服務器的音頻文件不播放

從服務器中直接播放音頻文件時它不播放,如果先播放本地文件再播放服務器的就可以。

    //NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/audiofile.mp3", [[NSBundle mainBundle] resourcePath]]];

NSURL *url = [NSURL URLWithString:@"http://celeritas-solutions.com/pah_brd_v1/productivo/1.mp3"];


NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
audioPlayer.numberOfLoops = -1;

if (audioPlayer == nil)
    NSLog([error description]);             
else 
    [audioPlayer play];

最佳回答:


AVPlayer * player = [AVPlayer playerWithURL:[NSURL URLWithString:@"YOUR URL"]];
[player play];

這樣看看

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved