gpt4 book ai didi

ios - 保存到 NSUserDefaults 的文件在创建新文件后随时间消失

转载 作者:行者123 更新时间:2023-11-28 06:47:51 27 4
gpt4 key购买 nike

概述:我正在开发我的第一个应用程序。它收集用户位置信息以跟踪自行车骑行。我将内容保存到 .txt 文件(坐标信息和属性信息),然后用户可以将他们的数据导出 iOS 应用程序以供进一步分析。我已经成功添加了一个保存文本文件的功能来存储信息。

应用在使用中:用户输入自定义标题,然后将该名称附加到列出所有记录的游乐设施的表格 View 中。在我调用 NSUserDefaults 的游乐设施创建中,这很关键,如果不调用 NSUserDefaults,游乐设施名称不会附加到列出所有游乐设施的 TableView 中。

let saveAction = UIAlertAction(title: "Save", style: .Default,
handler: { (action:UIAlertAction) -> Void in

// Allow for text to be added and appended into the RideTableViewController
let textField = alert.textFields!.first
rideContent.append(textField!.text!)
// Update permanent storage after deleting a ride
NSUserDefaults.standardUserDefaults().setObject(rideContent, forKey: "rideContent")

现在,当用户查看过去的游乐设施时,他们可以选择旧游乐设施并加载信息,一切都很好!

问题:不知何故,一段时间后会发生什么,乘车会被覆盖/丢失吗?在 iPhone 上测试时,我可以记录一次骑行,然后几个小时后我在 tableview 中查看过去的骑行并且骑行在那里,但是如果我记录一个新的骑行然后查看过去的骑行几个小时前记录的内容不见了,但新的行程还在。

我调用 NSUserDefaults 的唯一其他时间是在 TableView 中。我调用它的以下实例在 viewDidLoad 中:

override func viewDidLoad() {
super.viewDidLoad()

// Set up an if statement so that if there is no saved content it does not throw an error, if there is, populate the information with rideContent, if not leave the list as empty
if NSUserDefaults.standardUserDefaults().objectForKey("rideContent") != nil {

// Save content of rideContent as permanent storage so the ride is saved even when the app has been closed, this restores the old data
rideContent = NSUserDefaults.standardUserDefaults().objectForKey("rideContent") as! [String]

}

}

如果用户滑动删除文件,我会调用它:

 // This method will be called when a user tries to delete an item in the table by swiping to the left
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {

// create an if statement to select the delete function after a user swipes to the left on a cell in the table
if editingStyle == UITableViewCellEditingStyle.Delete {

//Delete an item at the row index level
rideContent.removeAtIndex(indexPath.row)

// Update permanent storage after deleting a ride
NSUserDefaults.standardUserDefaults().setObject(rideContent, forKey: "rideContent")

// This is called so that when a file has been deleted, it will reload the view to reflect this change
savedRideTable.reloadData()

}

}

我想如果下面的代码看起来很正常,这是否意味着保存到用户文档并不能提供真正的文件永久存储?有没有更好的地方来存储这些文件?我希望我不是太含糊,我很难追查为什么应用程序会这样做,或者到底是什么触发了这种情况。感谢 stackExchange 的帮助!

最佳答案

这是 NSUserDefaults 的正常行为。你不是在保存一个 txt 文件,你是在 NSUserDefaults 中存储一个 String,这是两个不同的东西,即使最终结果可能相似。
当你打电话时:

NSUserDefaults.standardUserDefaults().setObject(rideContent, forKey: "rideContent")

第二次,旧值被新值替换。
您有三个选择:

关于ios - 保存到 NSUserDefaults 的文件在创建新文件后随时间消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35807083/

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