"An option that indicates the interruption by another audio session has ended and the app can resume its audio session."
다른 오디오 세션이 끝났다는 것을 통해 인터럽션을 나타내는 옵션이며, 앱은 오디오 세션을 재개할 수 있습니다.
static var shouldResume: AVAudioSession.InterruptionOptions { get }
인터럽션 타입이 AVAudioSession.InterruptionType.ended
인 경우 interruptionNotification
노티피케이션의 userInfo
에 있는 AVAudioSessionInterruptionOptionKey
키에서 이 값을 확인하시기 바랍니다. 이는 사용자 입력을 기다리지 않고도 오디오 재생을 재개하는 것이 적합하다는 힌트를 제공합니다.
오디오 재생(게임과 같은) 시작을 위한 사용자 입력을 요구하지 않는 앱은 이 플래그를 무시할 수 있으며, 인터럽션이 끝날 때 재생을 재개할 수 있습니다.