EVURLCache是NSURLCache的子类,用于处理使用 NSURLRequest的web请求。
代码示例:
fuc applicatio(applicatio: UIApplicatio, didFiishLauchigWithOptios lauchOptios: [NSObject: AyObject]?) -> Bool { EVURLCache.LOGGING = true // We wat to see all cachig actios EVURLCache.MAX_FILE_SIZE = 26 // We wat more tha the default: 2^26 = 64MB EVURLCache.MAX_CACHE_SIZE = 30 // We wat more tha the default: 2^30 = 1GB EVURLCache.activate() retur true}
评论