🍎

[SwiftUI]ForEachで配列のValueと共にIndexも使用する方法

2022/07/22に公開

概要

例えば構造体の配列をForEachで回してViewを作成したい時に、
Indexも必要になった場合の解決策になります。

ソース

ForEach(Array(array.enumerated()), id: \.element) { index, element in
  // View
}

参考

https://stackoverflow.com/a/68755390

Discussion