Using UDID to create unique user identity

后端 未结 3 1662
南旧
南旧 2021-02-13 03:49

I am working on an iPhone App which communicates with a Server to store and exchange data. Since I would like to make it as simple as possible, I want to avoid registration (or

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-13 04:08

    UDID is hidden since iOS-6 and later so you can uniquely identify device by:

    NSString *UDID = [[UIDevice currentDevice] identifierForVendor];
    

提交回复
热议问题