gpt4 book ai didi

ios - 当我尝试为 CIContext 设置选项时,类型 'String' 没有成员 'cacheIntermediates' 错误

转载 作者:行者123 更新时间:2023-11-28 07:40:24 26 4
gpt4 key购买 nike

我正在使用 Xcode 10 构建 iOS 11。我似乎无法让 cacheIntermediates:false 选项起作用,尽管文档说它在为 iOS 10 或更高版本构建时可用。

lazy var ciContext: CIContext = { [unowned self] in
return CIContext(mtlDevice: self.device!,
options:[.cacheIntermediates:false])
}()

上面的代码给我以下错误:

Type 'String' has no member 'cacheIntermediates'

最佳答案

更新:正如其他用户所提到的,这是由于我的 Swift 编译版本设置为 4 而不是 4.2 造成的!

旧:

即使他们在 WWDC 2018 上展示了它与“.cacheIntermediates”一起使用,您也需要使用枚举值:

return CIContext(mtlDevice: self.device!, options:[kCIContextCacheIntermediates:false])

关于ios - 当我尝试为 CIContext 设置选项时,类型 'String' 没有成员 'cacheIntermediates' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52432826/

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