Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Re-Assigning instance of AVAudioPlayer in iOS13 leads to BAD_ACCESS runtime error

I have an app, that is for many years in the AppStore and runs without any crashes (last deployment target iOS 12.4). I have some code for playing a sound on certain events in the app.

Now I tried to upgrade my app for iOS 13 and without changing any code related to that “playSound” thing, I always get this runtime error, when testing on a real device. Does not happen on simulator.

Thread 1: EXC_BAD_ACCESS (code=1, address=0x48)Shows the error message

PLEASE: Before you mark that question as “duplicate”, consider that this must have something to do with the release of iOS13, because before it didn’t happen and the code is just "usual".

Here is my code, also on gitHub.

I have a property in my ViewController to prevent ARC deallocating my AVAudioPlayer:

private var mySoundPlayer: AVAudioPlayer = AVAudioPlayer()

I have a routine, where the “play sound” should be performed (here happens the error, when assigning a new instance of AVAudioPlayer. The resourceURL is not the problem, the RE-ASSIGNING is the problem, I tested it with a new instance not being assigned and i did not crash.

// -------------------------------------------------
// MARK: Private Methods
// -------------------------------------------------

private func makeSoundEvent(_ soundEvent : SoundEvent) {
    
    guard Settings().getSound() == .soundON else { return }
    guard let urlToRessource : URL = soundEvent.getFileURLToSoundRessource() else { return }
    do {
        mySoundPlayer = try AVAudioPlayer(contentsOf: urlToRessource)
        try? AVAudioSession.sharedInstance().setActive(true)
        mySoundPlayer.play()
    }
    catch { print("Could not create AVPlayer for ressource \(urlToRessource)") }
}

And here I have the call of that subroutine, somewhere in my viewDidLoad() with a delay of 2 seconds.

DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
    self.makeSoundEvent(.startFanfare)
}

I think it somehow does not work because of the async thread. But since it is on the main thread, I thought this should work.

like image 750
LukeSideWalker Avatar asked Sep 30 '19 10:09

LukeSideWalker


2 Answers

Just remove the initialisation and it will work

private var mySoundPlayer: AVAudioPlayer!

Cheers!!!

like image 132
Nauman Saleem Avatar answered Nov 25 '22 04:11

Nauman Saleem


private var mySoundPlayer: AVAudioPlayer = AVAudioPlayer()

AVAudioPlayer doesn't have init() listed as a valid initializer. The reference page shows four separate initializers, all of which take at least one parameter. If you were using the line above in code prior to iOS 13.1 without crashing, you were initializing the audio player incorrectly and probably just getting lucky that it wasn't a problem.

I don't know what changed specifically with AVAudioPlayer in iOS 13.1, but the release notes show quite a few audio-related changes, and it seems likely that some change to that class introduced a dependency on something that happens at initialization time.

like image 23
Caleb Avatar answered Nov 25 '22 04:11

Caleb