iOSApple Guide

iOS AVAudioSessionInterruptionNo

2017-07-18  本文已影响77人  NieFeng1024

https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/HandlingAudioInterruptions/HandlingAudioInterruptions.html#//apple_ref/doc/uid/TP40007875-CH4-SW1

后台录音时音频会话响应中断(开始中断)大致分为以下几种情况:

  1. 闹钟或日历闹钟响起或
  2. 当来电话时。
  3. 他应用程序激活其音频会话时。

中断结束 :应用程序继续运行,要恢复音频,必须重新启动音频会话。
如果用户忽略呼叫或关闭闹钟,则系统发出“中断已结束”消息,

audio_session_interrupted_2x.png

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_observerApplicationWillResignActive:) name:UIApplicationWillResignActiveNotification object:nil];

欢迎大家指正。

上一篇下一篇

猜你喜欢

热点阅读