swift
1var fruitsCount: [String] = ["0"] 2var count = 0 3 4//途中省略 5 6 func spreadsheetView(_ spreadsheetView: SpreadsheetView, cellForItemAt indexPath: IndexPath) -> Cell? { 7 if indexPath.section == 1 { 8 cell.setup(with: String(fruitsCount[count])) 9 count += 1 10 } 11 12//省略
spreadsheetviewを使っています。
cellのsectionを1と決めfruitcount番目の文字を表示しようと思っています。
しかし
cell.setup(with: String(fruitsCount[count]))の[count]の部分で
エラーコード↓
Thread 1: Fatal error: Index out of range
が出てしまいます。何かおかしい部分があるでしょうか、
推し植えていただけると幸いです。よろしくお願いします。
あなたの回答
tips
プレビュー