ibm mobilefirst - How to get unique value of iOS device -
i'm writing application used manage coming time of employer worklight. app used when employer comes company every day. when need check in, app get:
+ geolocation + employer id + unique value of device (unchange value of device, ex: imei on android). and send data database.
my problem not know unique value of ios device can take. have suggestions me?
you can no longer unique id per device. identifierforvendor best you're going get. apple has systematically disabled identifying specific device users' ids can't passed around marketers.
uidevice *device = [uidevice currentdevice];
nsstring *currentdeviceid = [[device identifierforvendor]uuidstring];
Comments
Post a Comment