Answers for "try? swift"

1

try? as? in swiftui

if let result = try? checkPassword("password") {
    print("Result was \(result)")
} else {
    print("D'oh.")
}
Posted by: Guest on April-13-2021
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