iOS 支援在背景播放音樂

來源:互聯網
上載者:User
iOS4之後就支援後台播放音頻了。只需下面兩步就可以實現後台播放音頻操作了。
1. 在Info.plist中,添加"Required background modes"鍵,其值設定是“App plays audio"
2. 在播放器播放音樂的代碼所在處,添加如下兩段代碼(當然,前提是已經添加了AVFoundation架構):

//添加後台播放代碼: AVAudioSession
*session = [ AVAudioSession
sharedInstance ];    [session
setActive
: YES
error :nil ];   
[session
setCategory
: AVAudioSessionCategoryPlayback
error :nil ];  
  //以及設定app支援接受遠端控制事件代碼。設定app支援接受遠端控制事件, //其實就是在dock中可以顯示應用程式圖示,同時點擊該圖片時,開啟app。 //或者鎖屏時,雙擊home鍵,螢幕上方出現應用程式播放控制按鈕。 [[ UIApplication
sharedApplication ]
beginReceivingRemoteControlEvents ];
   //用下列代碼播放音樂,測試後台播放 // 建立播放器  AVAudioPlayer
*player = [[ AVAudioPlayer
alloc ]
initWithContentsOfURL
:url
error
:nil ];  [url
release
];  [player
prepareToPlay
];  [player
setVolume
: 1 ]; 
player .numberOfLoops
= - 1 ;
//設定音樂播放次數  -1為一直迴圈  [player
play
]; //播放

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.