gpt4 book ai didi

苹果手机 SDK :Can write data to plist on Simulator but can't do same thing at Device?

转载 作者:搜寻专家 更新时间:2023-10-30 20:27:20 25 4
gpt4 key购买 nike

为什么我可以在模拟器上写信息到plist

但不能在真正的 iphone/ipod 设备上执行此操作????

是否存在将 .plist 文件放入 xcode 项目的绝对路径???

感谢大家的回复和解答~

代码:这是我如何将文本从文本字段写入 plist

NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"Password" ofType:@"plist"];
NSMutableDictionary *propertyList = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
[propertyList setValue:serialNumber.text forKey:@"serial_number"];

最佳答案

您只能写入应用程序的沙箱目录。下面是一个函数,它将为您的应用程序返回 Documents 文件夹的路径。

- (NSString *)applicationDocumentsDirectory
{
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
}

关于苹果手机 SDK :Can write data to plist on Simulator but can't do same thing at Device?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4132477/

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