ios - 按下主页按钮后,AVAudioPlayer 不播放音频
<p><p>我是 ios 开发新手。我正在使用 AVAudioPlayer。音频在前台播放。之后,当我点击主页按钮时,应用程序进入后台,但音频被静音。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>试试这个,</p>
<pre><code>- (void)applicationDidEnterBackground:(UIApplication *)application
{
__block UIBackgroundTaskIdentifier task = 0;
task=[application beginBackgroundTaskWithExpirationHandler:^{
NSLog(@"Expiration handler called %f",);
;
task=UIBackgroundTaskInvalid;
}];
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 按下主页按钮后,AVAudioPlayer 不播放音频,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17165596/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17165596/
</a>
</p>
页:
[1]