Reputation: 406
I am creating a watch application which is a standalone app. I need to generate QR code from any unique ID but I did not get from apple watch. is there any solution for get or generate Unique ID from apple watch?
Upvotes: 1
Views: 596
Reputation: 11
Try to generate UniqueId with current TimeStamp Value, It will be always unique
Upvotes: 0
Reputation: 562
To grab the watch device’s uid (vendor specific)
WKInterfaceDevice.current().identifierForVendor
Upvotes: 0