gpt4 book ai didi

ios - 包含文件内容的字典在 ios 中不起作用

转载 作者:行者123 更新时间:2023-11-29 03:23:18 25 4
gpt4 key购买 nike

我正在尝试从 ios 中的 plist 获取字典。问题是代码无法正常工作。它在不同的功能中工作,但不是这个。

  NSDictionary* pdata=[NSDictionary dictionaryWithContentsOfFile:datapath];

该文件存在于路径中,但由于某种原因它不起作用。当我尝试打印字典时,我得到 null。

编辑:这是我的路径/private/var/mobile/Applications/F4D5EFE8-58FC-4179-9492-4C4F9FD01024/Library/Preferences/abc.def.ghi.plist。这是一个越狱应用程序,我能够在一个单独的位置为另一个 pplist 成功地做到这一点。

最佳答案

这应该可以正常工作。

 NSString *plistFileUrl=[[NSBundle mainBundle] pathForResource:@"someplistFile"      ofType:@"plist"];
NSURL *url=[NSURL fileURLWithPath:plistFileUrl];
NSDictionary *aDict=[[NSDictionary alloc] initWithContentsOfURL:url];

关于ios - 包含文件内容的字典在 ios 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20798920/

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