gpt4 book ai didi

ios - 保存到 xml 文档 Swift

转载 作者:行者123 更新时间:2023-11-30 11:10:43 24 4
gpt4 key购买 nike

我正在使用此代码将字符串保存到项目中的 xml 文件

let saveTo = statisticsI.toXMLString()
let filepath = Bundle.main.url(forResource: "statistics", withExtension: "xml")
let filepathAlt = Bundle.main.path(forResource: "statistics", ofType: "xml")
print(filepathAlt!)
do {
try saveTo.write(to: filepath!, atomically: false, encoding: String.Encoding.utf8)
let contents = try String(contentsOfFile: filepathAlt!)
print("FILE CONTENTS \(contents)")
}
catch let error as NSError {
print("Error writing values \(error)")
}

打印文件内容正确返回 xml,但是当我停止运行应用程序时,文件尚未更新

当上面的代码运行时,文件已经被一个单独的函数读取。文件已被访问(并且其路径仍存储在变量中)是问题所在吗?

最佳答案

when I stop running the application, the file hasn't been updated

您无法写入 iOS 中的应用程序包。尝试使用文档文件夹或应用沙箱中其他位置的路径。

关于ios - 保存到 xml 文档 Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52202739/

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