Reputation: 14904
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
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