Answers for "optional array in swift"

1

swift declare optional values

// Optional values are types that can contain nil
var optionalValue: String? // this can be done with more than strings, but for this example that's what was used
Posted by: Guest on May-22-2020
0

how to unwrap arrays with optional value in swift

let arrayOfOptionals: [String?] = ["Seems", "like", "an", nil, "of", "optionals"]
let arrayWithNoOptionals = arrayOfOptionals.compactMap { $0 }
Posted by: Guest on December-06-2019

Code answers related to "Swift"

Browse Popular Code Answers by Language