有没有办法在ios watchkit扩展应用中缓存一个类似于图像的键值对?

时间:2015-05-15 09:33:33

标签: ios caching watchkit

在watchkit应用中,我们可以缓存此链接https://developer.apple.com/library/ios/documentation/General/Conceptual/WatchKitProgrammingGuide/Images.html

中提供的图像文件

所以我要求一种方法来缓存键值对吗?

2 个答案:

答案 0 :(得分:0)

我认为你会发现NSUserDefaults正是你正在寻找的。您可以存储简单的键/值,但您应该使用钥匙串进行任何敏感操作。

以下是文档:https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults_Class/index.html

答案 1 :(得分:0)

由于其灵活性,

NSCache可能是您正在寻找的东西。系统会在需要更多空间后清理缓存,这样您就不必担心太多了。