I am using Xcode 11.0 (11420a), targeting iOS 13, Swift 5, and playing back
a local audio file. Seems simple enough, but I am getting a console print:
let path = Bundle.main.path(forResource:
"Tchaikovsky_Rococo_Var_orch.mp3", ofType:nil)!
let url = URL(fileURLWithPath: path)
do {
player = try AVAudioPlayer(contentsOf: url)
player?.volume = 0.5
player?.numberOfLoops = -1
player?.play()
} catch {
print("Could not load the audio file.")
}
*[plugin] AddInstanceForFactory: No factory registered for id ...*
Everything runs fine, but how do I silence this? I've googled and haven't
seen anything.
Thanks,
Eric
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]