uniqueIdentifier
vsについて質問identifierforVendor
です。ログイン識別の目的で UDID を使用し、forVendor の新しい iOS 6 バージョンへの切り替えを進めています...
私の質問はこれです 1) Apple はまだ uniqueIdentifier を使用しているアプリを拒否していますか? 2) 第 1 世代の iPad が 6.0 に移行することを許可していないのに、どうすればこれを拒否できるのでしょうか?
PS - 6.0 で常に機能するとは限らないこともわかりましidentifierforVendor
た。6.0.1 で解決されたようです。
これが私が使用しているコードです...拒否されると思いますか?
static inline NSString* UniqueDeviceId() {
if ([[[UIDevice currentDevice] systemVersion] compare:@"6.0.1" options:NSNumericSearch] != NSOrderedAscending)
return [[[UIDevice currentDevice] identifierForVendor] UUIDString];
return [[UIDevice currentDevice] uniqueIdentifier];
}
ありがとう