中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ios中音樂后臺運行方法

發布時間:2020-10-14 16:32:41 來源:網絡 閱讀:235 作者:whs95 欄目:移動開發

1、引入AVFoundation框架中的#import <AVFoundation/AVFoundation.h>,然后在Info.plist文件中添加UIBackgroundModes鍵值,它包含一個或多個string的值,選擇App plays audio or streams audio/video using AirPlay。

2、在加載音樂的界面ViewDidLoad中添加下面代碼

AVAudioSession *session = [AVAudioSession sharedInstance];

[session setActive:YES error:nil];

[session setCategory:AVAudioSessionCategoryPlayback error:nil];


完整代碼演示:

- (void)viewDidLoad

{

//音樂在后臺播放

AVAudioSession *session = [AVAudioSession sharedInstance];

[session setActive:YES error:nil];

[session setCategory:AVAudioSessionCategoryPlayback error:nil];


NSURL* fileURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"loop.mp3" ofType:nil]];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:NULL];

player.numberOfLoops = -1; // Endless(循環播放)

[player play];


}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沁水县| 浦江县| 镶黄旗| 彭阳县| 自治县| 宁都县| 鹤山市| 海城市| 环江| 梁平县| 永城市| 洪泽县| 靖州| 桐乡市| 鄯善县| 三门县| 江孜县| 兴国县| 井研县| 衢州市| 麻江县| 肃宁县| 安龙县| 临西县| 丰县| 镇平县| 丽江市| 乐东| 永春县| 铜鼓县| 嵊州市| 壶关县| 繁峙县| 玉溪市| 金塔县| 伊通| 韶关市| 樟树市| 西安市| 瑞金市| 烟台市|