可能重复:
Apple 会接受带有已弃用代码的应用程序吗?
我正在开发一个 iPhone 应用程序,我正在使用这样的方法:
- (NSString*)udid
{
UIDevice* device = [UIDevice currentDevice];
return [device.uniqueIdentifier stringByReplacingOccurrencesOfString:@"-" withString:@""];
}
但我已经看到“uniqueIdentifier”已被弃用。它工作正常的问题,我想知道如果我像这样在商店中发布我的应用程序会发生什么(使用不推荐使用的方法)
谢谢你的回答。