Acredito que todos vocês podem ter adicionado o AVFoundation à lista de estruturas na guia Informações gerais do projeto.
Código incorreto foi o seguinte:
import SwiftUI
import AVFoundation
struct PlayerDetailView: View {
@State private var downloadedFilePath: URL = nil
var audioPlayer: AVAudioPlayer
var body: some View {
E depois que mudei a var audioPlayer: AVAudioPlayer
declaração para logo após a linha import AVFoundation
, ela parecia estar funcionando.
Então, o código a seguir funcionou para mim em um SwiftUI
projeto.
import SwiftUI
import AVFoundation
var audioPlayer: AVAudioPlayer!
struct PlayerDetailView: View {
@State private var downloadedFilePath: URL = nil
var body: some View {
VStack {
Button("Play the Downloaded Track") {
if let downloadedPath = self.downloadedFilePath?.path, FileManager().fileExists(atPath: downloadedPath) {
do {
audioPlayer = try AVAudioPlayer(contentsOf: self.downloadedFilePath!)
guard let player = audioPlayer else { return }
player.prepareToPlay()
player.play()
} catch let error {
print(error.localizedDescription)
}
} else {
print("The file doesn not exist at path || may not have been downloaded yet")
}
}
}
}
}
Eu estava inicialmente seguindo este tutorial do CodeWithChris e sua discussão também levou às mudanças acima. Verifique também o tutorial a seguir, se precisar de mais exemplos.
Espero que isso seja útil para alguém lá fora!
Felicidades!