Possible Duplicate:
Will Apple accept Apps with deprecated code?
我正在开发一种手法,而且我正在使用这样一种方法:
- (NSString*)udid
{
UIDevice* device = [UIDevice currentDevice];
return [device.uniqueIdentifier stringByReplacingOccurrencesOfString:@"-" withString:@""];
}
但是,我已经看到,“uniqueIdentifier”被贬低。 如果我把自己的遗嘱放在仓库中,那么它会遇到什么事情(使用折旧方法)
感谢您的答复。