有人可以举例说明如何使用NSCache缓存字符串吗?
还是有人有一个很好的解释链接?我似乎找不到任何..

最佳答案

您可以使用与NSMutableDictionary相同的方式来使用它。区别在于,当NSCache检测到过多的内存压力(即,它缓存了太多的值)时,它将释放其中的一些值以腾出空间。

如果您可以在运行时重新创建这些值(通过从Internet下载,进行计算等方法),那么NSCache可能会满足您的需求。如果无法重新创建数据(例如,它是用户输入的,对时间敏感的等等),则您不应将其存储在NSCache中,因为它会在那里被销毁。

示例,未考虑线程安全性:

// Your cache should have a lifetime beyond the method or handful of methods
// that use it. For example, you could make it a field of your application
// delegate, or of your view controller, or something like that. Up to you.
NSCache *myCache = ...;
NSAssert(myCache != nil, @"cache object is missing");

// Try to get the existing object out of the cache, if it's there.
Widget *myWidget = [myCache objectForKey: @"Important Widget"];
if (!myWidget) {
    // It's not in the cache yet, or has been removed. We have to
    // create it. Presumably, creation is an expensive operation,
    // which is why we cache the results. If creation is cheap, we
    // probably don't need to bother caching it. That's a design
    // decision you'll have to make yourself.
    myWidget = [[[Widget alloc] initExpensively] autorelease];

    // Put it in the cache. It will stay there as long as the OS
    // has room for it. It may be removed at any time, however,
    // at which point we'll have to create it again on next use.
    [myCache setObject: myWidget forKey: @"Important Widget"];
}

// myWidget should exist now either way. Use it here.
if (myWidget) {
    [myWidget runOrWhatever];
}

关于ios - 如何使用NSCache,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5755902/

10-09 04:15