前提・実現したいこと
Xcodeとswiftを用いて、"task"と"time"をtextfieldで入力し、buttonを押すことで、Listに表示させようとしています。
以下のエラーが発生しており、解決方法を探しています。
発生している問題・エラーメッセージ
エラーメッセージ The compiler is unable to type-check this expression in reasonable time; try breaking up the express
該当のソースコード
swift
1ソースコード 2import SwiftUI 3 4struct Operate{ 5 var task: String 6 var time: String 7 8 init(task: String, time: String) { 9 self.task = task 10 self.time = time 11 } 12} 13 14 15struct OperateList: View { 16 17 @State var pretask = "" 18 @State var pretime = "" 19 @State var operate = [Operate]() 20 21 22 var body: some View { 23 24 VStack{ 25 26 HStack{ 27 28 TextField("task", text: self.$pretask).textFieldStyle(RoundedBorderTextFieldStyle()).frame(width: 300, height: 30) 29 //taskの入力 30 31 TextField("time", text: self.$pretime).textFieldStyle(RoundedBorderTextFieldStyle()).frame(width: 100, height: 30).keyboardType(.numberPad) 32 //timeの入力 33 34 Button(action: { 35 self.operate.append(Operate(task: self.pretask, time: self.pretime)) 36 self.pretask = "" 37 self.pretime = "" 38 }){ 39 ZStack{ 40 RoundedRectangle(cornerRadius: 5).frame(width: 50, height: 30).foregroundColor(.green) 41 Text("追加").foregroundColor(.white) 42 } 43 } 44 //taskとtimeの追加 45 46 } 47 48 49 50 NavigationView { 51 List{ 52 53 ForEach(operate.count, id: .self){ Operate in 54 NavigationLink(destination: Timer()){ 55 56 Text(Operate(pretask) + ":" + Operate(pretime)) 57 58 } 59 } 60 .onDelete(perform: delete) 61 .onMove(perform: move) 62 63 } 64 .navigationBarItems(trailing: EditButton()) 65 .navigationBarTitle(Text("Operate"), displayMode: .large) 66 } 67 68 69 } 70 71 } 72 73 74 75 76 func delete(at offsets: IndexSet){ 77 operate.remove(atOffsets: offsets) 78 } 79 80 func move(from source: IndexSet, to destination: Int){ 81 operate.move(fromOffsets: source, toOffset: destination) 82 } 83 84 85} 86
試したこと
エラーの内容は調べた限りでは実行時間を超えている?などの意味があるようですが、どこが原因なのかがわかっていません。
よろしくお願いします。
あなたの回答
tips
プレビュー