gpt4 book ai didi

ios - 在这种情况下,'Index' 对于类型查找是有歧义的

转载 作者:搜寻专家 更新时间:2023-11-01 06:16:28 27 4
gpt4 key购买 nike

我正在使用两个相互冲突的库:

import DropDown
import SwiftyJSON

我的代码:

  self.dropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in
guard let cell = cell as? MyCell else { return }

我收到这个错误:

'Index' is ambiguius for type lookup in this context

我将 Index 更改为 DropDown.Index 但出现此错误:

Index is not a member type of DropDown

最佳答案

Index 不是您的模块或 DropDown 模块中的有效类型。您确定 Index 作为一种类型存在吗?也许它的类型是 IntIndexPath

编辑:再看一遍,您可以更改它,这样错误就不是问题了。在 Swift 中,您不需要在此处指定类型信息,因为它可以被推断出来:

self.dropDown.customCellConfiguration = { index, item, cell in
...
}

关于ios - 在这种情况下,'Index' 对于类型查找是有歧义的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43805597/

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