你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS_33_音樂後台播放

iOS_33_音樂後台播放

編輯:IOS開發綜合
音樂後台播放:三個步驟 在appDelegate中的didEnterBackground方法中實現:

app的beginBackgroundTaskWithExpirationHandler方法

開啟後台任務,讓程序在後台運行

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    // 後台播放三步驟之一:讓應用在後台運行
    [application beginBackgroundTaskWithExpirationHandler:nil];
}


\
在Supporting Files目錄下的【33_音效-Info.plist】 增加一項【Required background modes】 值為【App plays audio or streams audio/video using AirPlay】 \
\
第三、在工具類的初始化方法【<喎?/kf/ware/vc/" target="_blank" class="keylink">vc3Ryb25nPjxzdHJvbmc+PC9zdHJvbmc+CjxwIGNsYXNzPQ=="p1">initialize】中,設置音頻會話的類型,並激活

\
+ (void)initialize
{
    // 後台播放,第三步,設置 音頻會話類型
    AVAudioSession *session = [AVAudioSession sharedInstance];
    // 類型是:播放和錄音
    [session setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
    // 而且要激活 音頻會話
    [session setActive:YES error:nil];
}


其他三種常用的音頻會話類型是:
  1. 上一頁:
  2. 下一頁:
Copyright © Ios教程網 All Rights Reserved