let nowURL = documentsDirectory.URLByAppendingPathComponent("now.plist")
在应用中保存:
if let filePath = nowURL.path {
NSKeyedArchiver.archiveRootObject(nowTasks, toFile: filePath)
}
在应用中检索:
if let loadedNowArray = NSKeyedUnarchiver.unarchiveObjectWithFile(nowURL.path!) as? [Task] {
nowTasks = loadedNowArray
}
如何从todayViewController.swift文件中将.plist中的数据作为对象获取?
我已经尝试了如上所示的检索方法,但它无法识别路径的“documentsDirectory”...