我的URLCache在Xcode模拟器中缓存URL,但不在真实设备上缓存。我将代码缩小到这个例子:
if let urlCache = SessionManager().session.configuration.urlCache {
// Returns nil, because there's nothing in the cache
print(urlCache.cachedResponse(for: urlRequest))
// Put the URL in the cache
urlCache.storeCachedResponse(CachedURLResponse(response: response, data: responseData), for: urlRequest)
// URL should now be in the cache, but it's still nil!
print(urlCache.cachedResponse(for: urlRequest))
}
我很困惑。有什么想法吗?
答案 0 :(得分:0)
原来这个缓存被其他网络调用填充并且空间不足。我们通过大幅增加缓存的大小来修复它。