ios swift Kingfisher 内存飙升设置
2022-01-07 本文已影响0人
荔枝lizhi_iOS程序猿
用Kingfisher 后,内存飙升,用下面的代码可以设置kingfisher 内存使用的总量
import Kingfisher
private func configKingfisher() {
let totalMemory = ProcessInfo.processInfo.physicalMemory
ImageCache.default.memoryStorage.config.totalCostLimit = Int(totalMemory / 10)
}