我知道某个应用程序需要获取唯一的电话ID,以便每部电话都有不同的号码。哪些独特的手机ID可在应用中使用?对Android和Iphone使用相同类型的ID会很棒。
答案 0 :(得分:1)
机器人:
android.telephony.getDeviceId()
请参阅:http://developer.android.com/reference/android/telephony/TelephonyManager.html#getDeviceId%28%29
iPhone:
[[UIDevice currentDevice] uniqueIdentifier]
答案 1 :(得分:1)
iOS上的最佳选择是[UIDevice currentDevice].identifierForVendor.UUIDString
唯一的另一种选择是某种用户/服务器创建的标识符。