我的应用程序中有电子邮件功能,并且我想在电子邮件中将我的应用程序版本提交到应用程序商店
我怎样才能做到这一点?如果你有,请给我解决方案
提前比
NSString* version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
要将版本号作为字符串获取,只需调用:
NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
如果你想把一些文本放在一起:
NSString *version = [NSString stringWithFormat:@"Version %@", [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]];
尝试
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]