I try to parse UUID from string but it's always nil. I write it like this.
UUID(uuidString: "my UUID")
I even try it like this in xcode expression watcher but it's also nil
UUID(uuidString: UUID().uuidString)
But when I try NSUUID on the same string, It's working fine.
NSUUID(uuidString: "my UUID")
Did anyone know what should I check? or is there anyway to convert from NSUUID to UUID?
Thank you very much in advance.