这是我们在Swift 2中编写的代码。什么是Swift 3版本?我看不到setShared的替代品。

let sharedCache: NSURLCache = NSURLCache(memoryCapacity: 0, diskCapacity: 0, diskPath: nil)
NSURLCache.setSharedURLCache(sharedCache)

最佳答案

这适用于Xcode 8 Beta 4

    URLCache.shared = sharedCache

关于swift3 - 如何在Swift 3中设置共享URLCache?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38249573/

10-10 16:45