UIDevice uniqueIdentifier deprecated - What to do now?

后端 未结 30 2137
日久生厌
日久生厌 2020-11-21 06:07

It has just come to light that the UIDevice uniqueIdentifier property is deprecated in iOS 5 and unavailable in iOS 7 and above. No alternative method or pr

30条回答
  •  无人共我
    2020-11-21 06:29

    For Swift 3.0 please use below code.

    let deviceIdentifier: String = (UIDevice.current.identifierForVendor?.uuidString)!
    NSLog("output is : %@", deviceIdentifier)
    

提交回复
热议问题