从通知扩展中的plist中检索对象

时间:2016-02-17 02:07:47

标签: ios swift object plist

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”...

0 个答案:

没有答案