前提・実現したいこと
swiftuiを独学で勉強していますが,Javaとの違いが多すぎて難しいです...
メソッドを作りたく,色々調べて試行錯誤してみましたが解決しないので質問させていただきます.
ピッカーを用いて,りんごからすいかまでを表示させたいです.
恐らくピッカー内部でのindexの処理でエラーになっています.
一時は,「IntをStringに変換できない」や,「requires that 'String' conform to 'RandomAccessCollection'」といったエラーも出ていましたが,試行錯誤しているうちに以下のエラーメッセージしか出なくなりました.
初心者の質問で申し訳ありませんが,お助けいただけるとありがたいです.お願いいたします.
発生している問題・エラーメッセージ
Failed to produce diagnostic for expression; please file a bug report
該当のソースコード
swiftui
1import SwiftUI 2 3struct ToppingSelect1: View{ 4 var nameE : String //name in English 5 var nameJ : String //name in Japanese 6 @State private var selectedIndex = 0 7 8 var body : some View{ 9 Text(nameJ) 10 11 Picker("", selection: $selectedIndex) { 12 ForEach(nameE, id: .self) { index in 13 Text(nameE.index) 14 } 15 } 16 .pickerStyle(SegmentedPickerStyle()) 17 } 18} 19 20struct QuestionView: View{ 21 let fruits = ["りんご","ばなな","さくらんぼ","めろん","すいか"] 22 @State var selectedIndex = 1 23 24 var body: some View{ 25 ToppingSelect1(nameE: "fruits",nameJ: "フルーツ") 26 } 27} 28 29struct QuestionView_Previews: PreviewProvider { //プレビュー用 30 static var previews: some View { 31 QuestionView() 32 } 33} 34
試したこと
Pickerの内部を以下のように修正しましたが,同じくエラーが発生しました.
ForEach(0 ..< nameE.count) { index in Text(nameE.index).tag(index) } Pickerの内部を以下のように修正しましたが,以下のようなエラーが発生しました. List(0..<nameE.count){index in Text(nameE[index]) Cannot convert value of type 'Int' to expected argument type 'Range<String.Index>'
補足情報(FW/ツールのバージョンなど)
Xcode12.4
回答1件
あなたの回答
tips
プレビュー