derdida
derdida

Reputation: 14904

UUID in Swift iOS 8.1

I have a problem when i try to change my App to iOS 8.1. The Syntax to create a UUID doesent work anymore:

var uuid = NSUUID.UUID().UUIDString

How to create a uuid in iOS 8.1 with Swift?

Upvotes: 4

Views: 4931

Answers (2)

zaph
zaph

Reputation: 112865

Swift 3:

var uuid = NSUUID().uuidString
print("UUID string: \(uuid)") // UUID string: D7C7F26B-608A-465A-ADF8-4F5365513E5D

Swift 2:

var uuid = NSUUID().UUIDString
println("UUID string: \(uuid)") // UUID string: 76A4073A-D79C-45FD-A5D6-86E52AD8C771

Upvotes: 7

Chris Garrett
Chris Garrett

Reputation: 4924

For Swift 3 you can do the following:

UUID().uuidString

Upvotes: 3

Related Questions