我目前正在将项目移植到MacOS,在Windows版本中,我们使用VerQueryLang(...)(winapi的一部分)来确定窗口标题的某些文件版本信息。
MacOS上是否有相同的功能?
答案 0 :(得分:0)
是的,它内置于应用程序包中:
NSBundle *mainBundle = [NSBundle mainBundle];
NSString *version = [mainBundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
NSString *build = [mainBundle objectForInfoDictionaryKey:@"CFBundleVersion"];