Skip to content

Instantly share code, notes, and snippets.

View r-kumakura's full-sized avatar

Ryosuke Kumakura r-kumakura

View GitHub Profile
@r-kumakura
r-kumakura / gist:e99943ccdfb075d18358b68d60576fd4
Created November 22, 2017 05:18
Swift UUID (non hyphen)
// UUID
func createUUID() -> String {
let uuid = NSUUID().uuidString
return uuid.components(separatedBy: "-").joined()
}