MacOS X相当于VerQueryValue?

时间:2014-02-18 15:59:25

标签: c++ objective-c macos fileversioninfo

我目前正在将项目移植到MacOS,在Windows版本中,我们使用VerQueryLang(...)(winapi的一部分)来确定窗口标题的某些文件版本信息。

MacOS上是否有相同的功能?

1 个答案:

答案 0 :(得分:0)

是的,它内置于应用程序包中:

NSBundle *mainBundle = [NSBundle mainBundle];
NSString *version = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
NSString *build = [mainBundle objectForInfoDictionaryKey:@"CFBundleVersion"];

Reference