iOS 13.1 Crash in AVAudio Player

前端 未结 4 2026
盖世英雄少女心
盖世英雄少女心 2020-11-29 10:26

My App is crashing on iOS 13.1 when i trace a issue then found App is crashing because of AVAudioPlayer.

Below Is My Player Setup.

if le         


        
4条回答
  •  借酒劲吻你
    2020-11-29 10:48

    The same issue happens with Objective C code.

    Previously musicPlayer = [[AVAudioPlayer alloc] init]; would work but will now cause a crash in iOS13. The crash happens later on when using one of the other init methods like initWithContentsOfURL.

    Removing the [[AVAudioPlayer alloc] init] fixes the issue.

提交回复
热议问题