Hi,
In my Mac OS app I'm trying to create an UUID from a string
the code is taken straight from the documentation but it returns nil every time
import Foundation
let test1 = UUID(uuidString: "E621E1F8-C36C-495A-93FC-0C247A3E6E5F") // Returns nil
let test2 = UUID() //Works fine
it works fine in a playground but not in my app.
any ideas?