質問編集履歴

1

このようにするとCannot convert value of type 'Binding<[String]>' to expected argument type 'Binding<String>’

2020/10/14 04:35

投稿

naki888
naki888

スコア12

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,22 @@
1
1
  現在、swiftでリストを作成しているのですが、リストで表示させた行の内容をナビゲーションで飛ばさず、リスト画面のまま、編集したいと考えているのですが、行き詰まっております。
2
+
3
+
4
+
5
+ 下記のようにするとCannot convert value of type 'Binding<[String]>' to expected argument type 'Binding<String>’というエラー発生。
6
+
7
+
8
+
9
+ List{
10
+
11
+ ForEach(0..<tasks.count, id: .self) { task in
12
+
13
+ TextField("PlainTextFieldStyle", text: $tasks)}
14
+
15
+ //Text(self.tasks[task])}
16
+
17
+ .onDelete(perform: rowRemove)
18
+
19
+ }
2
20
 
3
21
 
4
22