Answers for "simple do try catch swift"

0

swift do catch

do {
    let sandwich = try makeMeSandwich(kitchen)
} catch let error {
    print(error.localizedDescription)
}
Posted by: Guest on December-07-2020
0

swift try catch

do {
    // Create audio player object
    audioPlayer = try AVAudioPlayer(contentsOf: soundURL)
            
    // Play the sound
    audioPlayer?.play()
}
catch {
    // Couldn't create audio player object, log the error
    print("Couldn't create the audio player for file \(soundFilename)")
}
Posted by: Guest on June-11-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language