我需要访问索引以及ForEach循环中的元素。
到目前为止,我已经在我的数据存储中:
@Published var sevenDayReview: [[CGFloat]] = [
[1754,1654],[1854,1687],[1985,1854],[1765,1652],[1864,1698],[1987,1654],[1865,1465]
]
在我看来:
ForEach(self.dataModel.sevenDayReview, id: \.self) { array in
ForEach(array, id: \.self) { element in
VStack {
ReviewChart(dataModel: CalorieViewModel(), valueHeight: element, cornerRadius: 5, color: 2 )
}
}
}
运行正常。但是我想将当前元素的当前数组索引传递给 color 参数。
背景:使用数据存储区中的值加载条形图,并按行索引替换颜色。
我不知道什么是最好的方法是在SwiftUI中。
答案 0 :(得分:1)
您可以使用ForEach视图的different init:
ForEach(0..<array.endIndex) { index in //inner ForEach
VStack {
ReviewChart(dataModel: CalorieViewModel(),
valueHeight: array[index],
cornerRadius: 5,
color: index)
}
}