gpt4 book ai didi

ios - 如何将选项属性与 SDWebImage Prefetch 一起使用?

转载 作者:行者123 更新时间:2023-11-28 23:38:18 31 4
gpt4 key购买 nike

这对某些人来说可能是个简单的问题,但我无法弄清楚如何为 SDWebImagePrefetcher 应用 options 属性。

到目前为止,我已将其设置为使用完成 block 获取一些 url

SDWebImagePrefetcher.shared.prefetchURLs(
urls as [URL],
progress: nil,
completed: { finished, skipped in
print("Finished")
}
)

我觉得选项是这样设置的?但我不确定需要什么来代替 /* ? */ 以启用选项之一 SDWebImageCacheMemoryOnly

SDWebImagePrefetcher.shared.options = /* ? */

最佳答案

optionsSDWebImageOptions 类型,它是使用 NS_OPTIONS 宏声明的。这意味着您可以使用 Objective-C 中的按位或运算符组合选项:

SDWebImagePrefetcher.shared.options = SDWebImageRetryFailed | SDWebImageLowPriority; // etc

或者在 Swift 中像这样:

SDWebImagePrefetcher.shared.options = [.retryFailed, .lowPriority] // etc

所有选项都可以在这里找到:https://sdwebimage.github.io/Enums/SDWebImageOptions.html

关于ios - 如何将选项属性与 SDWebImage Prefetch 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54313653/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com