I have an NSSet of Strings, and I want to convert it into [String]. How do I do that?
I would use map:
map
let nss = NSSet(array: ["a", "b", "a", "c"]) let arr = nss.map({ String($0) }) // Swift 2 let arr = map(nss, { "\($0)" }) // Swift 1