if ([[UIDevice currentDevice] respondsToSelector:@selector(identifierForVendor)]) {
return [[[UIDevice currentDevice] identifierForVendor] UUIDString];
}
Will this ever change? I originally wanted to use MAC address, but apparently 7+ doesn't return it. I've called this from a dev app i'm working on, and read that it is calculated using the bundle id.
Post app store release, will this be consistent forever?