今までうまくいっていたのに、
swift
1if indexPath.section == 1 { 2 while (i <= count){ 3 if indexPath.row == Int(subjectNameCode[i]) { 4 cell.setup(with: String(score[i])) 5 print("点数:(score[i]) :(i)") 6 i += 1 7 } 8 } 9}
ここにwhile文を入れた途端にシュミレーターが真っ白で何も映らなくなってしまいました。
ずっと繰り返し処理が行われて表示できなくなっていたりするのでしょうか。
解決方法を教えていただけると幸いです。
回答1件
あなたの回答
tips
プレビュー