Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active April 27, 2018 22:58
Show Gist options
  • Save KentarouKanno/96b8336fcff6c7a4526e to your computer and use it in GitHub Desktop.
Save KentarouKanno/96b8336fcff6c7a4526e to your computer and use it in GitHub Desktop.
NSUUID

NSUUID

参考URL: 【iOS】UUIDの取得の最適化

★ UUIDを生成する

let uuid = NSUUID()
        
let uuid: NSUUID = NSUUID()

★ 指定したUUID文字列をもったUUIDを生成する

let uuid: NSUUID = NSUUID(uuidString: "B5222149-A065-4B7E-9DB0-9147FF402295")!

★ UUID文字列を生成する

let uuidString = NSUUID().uuidString
print(uuidString)

//=> 3B72FF23-2D18-4582-8FB2-668548A4676B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment