"AEManagedValueServiceReleaseQueue called from outside realtime thread"
Hello
How do I use two view controllers or more with the same audio?
I try using for view controller 1 and 2
self.audio = AEAudioController()
do {
try self.audio!.start();
}catch.....
but it creates another new audio thread and throwing the message "AEManagedValueServiceReleaseQueue called from outside realtime thread"
What can I do?
Comments
okay fix it! haha
I used this:
var audio: AEAudioController { let appDelegate = UIApplication.shared.delegate as! AppDelegate return appDelegate.audio! }