gpt4 book ai didi

macos - 如何在 Mac OSX 上读取 MY APP 的 plist 文件?

转载 作者:行者123 更新时间:2023-12-04 23:30:13 25 4
gpt4 key购买 nike

我的 Mac OS X 应用程序(和所有应用程序一样)在它的包中有一个 plist 文件,它定义了包版本、包名称等。

我想在运行时阅读这个 plist,但我不知道该怎么做!我什至不知道这个文件在哪里,也找不到它!!

请注意,我不是在寻找在 /Library/Preferences 中创建的 plist 文件。链接到 NSUserDefaults (这个问题在 stackoverflow 的其他帖子中提出,我完全知道如何阅读这个文件)。

我尝试了以下代码(AG-Info.plist 是我的包中 plist 的名称):

NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"AG-info.plist"];
NSDictionary *plistDictionary = [[NSDictionary dictionaryWithContentsOfFile:path] retain];

但它不起作用! (它适用于 iOS 应用程序)

有人知道如何找到我的包 plist 吗?

最佳答案

只需使用:

NSDictionary *dict = [[NSBundle mainBundle] infoDictionary];

关于macos - 如何在 Mac OSX 上读取 MY APP 的 plist 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6151578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com