enter image description here Screenshot of error我正在从tableviewcell类的结构中访问值,我想要从结构中进行api调用的值。
答案 0 :(得分:0)
您的错误是
无法为索引为
(item).type
的[Section]下标
是为此行
let item: Item = sectionData[item]
它说明在数组下标时不能使用项目类型值。
您将需要传递一些索引,即一些Int
值
使用适当的索引更新代码
let item: Item = sectionData[indexOfSectedRow]
希望有帮助。