在文档目录中找不到 plist 文件?如何以编程方式修改plist?
我有一个 Xcode 4.2 中的应用程序。
我已经根据我的要求创建了 plist 文件。
我已经从应用程序主包中找到了数据并将数据放入数组中。
但是由于我想在运行时修改plist数据,我在文档目录中找不到它
实际上我想以编程方式修改plist。虽然我没有使用 mainbundle。
-(NSString *) saveFilePath::(NSString *)tagString
{
NSArray *arr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *strPath = [[arr objectAtIndex:0] stringByAppendingPathComponent:tagString];
return strPath;
}
无法检索 plist 文件。(我正在获取路径,但未获取文件路径)
我也无法在 iphone 模拟器/App/Documents 文件夹中找到物理 plist 文件?
I have an application in Xcode 4.2.
I have created plist file as my requirement.
I have found the data from Applications main bundle and got the data in to the array.
But As I want to modify the plist data at run time, I could not find it in Documents Directory
Actually I want to modify the plist programmatically. Though I am not using mainbundle.
-(NSString *) saveFilePath::(NSString *)tagString
{
NSArray *arr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *strPath = [[arr objectAtIndex:0] stringByAppendingPathComponent:tagString];
return strPath;
}
Could not retrive the plist file.(Path I am getting, but path with file not getting)
I also could not find physically the plist file in the iphone simulator/App/Documents folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 plist 从捆绑包复制到文档目录,
如有任何疑问,请先告诉我
谢谢&问候
尼尔
you need to copy plist from bundle to document directory first
let me know in case of any query
thanks& regards
neil