質問編集履歴
3
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
### 該当のソースコード
|
18
18
|
|
19
|
-
リストに表示するデータはmodelファイル`RecipeModel`にあるdictionary`commonDictionary`から取ってきています。
|
19
|
+
リストに表示するデータはmodelファイル`RecipeModel.swift`にあるdictionary`commonDictionary`から取ってきています。
|
20
20
|
|
21
21
|
```ShoppingTableViewController
|
22
22
|
|
2
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
### 該当のソースコード
|
18
18
|
|
19
|
-
リストに表示するデータはmodelファイルにあるdictionary`commonDictionary`から取ってきています。
|
19
|
+
リストに表示するデータはmodelファイル`RecipeModel`にあるdictionary`commonDictionary`から取ってきています。
|
20
20
|
|
21
21
|
```ShoppingTableViewController
|
22
22
|
|
1
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
リストに表示するデータはmodelファイルにあるdictionary`commonDictionary`から取ってきています。
|
20
20
|
|
21
|
-
```Sw
|
21
|
+
```ShoppingTableViewController
|
22
22
|
|
23
23
|
import UIKit
|
24
24
|
|
@@ -166,6 +166,58 @@
|
|
166
166
|
|
167
167
|
```
|
168
168
|
|
169
|
+
```RecipeModel
|
170
|
+
|
171
|
+
import UIKit
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
var key2021323 = "2021/03/23(Tue)"
|
176
|
+
|
177
|
+
var keyName = "common_name"
|
178
|
+
|
179
|
+
var keyPath = "common_imagePath"
|
180
|
+
|
181
|
+
var keyTime = "common_time"
|
182
|
+
|
183
|
+
var keyCalorie = "common_calorie"
|
184
|
+
|
185
|
+
var keyIngList = "common_ingredients"
|
186
|
+
|
187
|
+
var keyIngName = "name"
|
188
|
+
|
189
|
+
var keyIngQ = "quantity"
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
let commonDictionary = [
|
194
|
+
|
195
|
+
"2021/03/23(Tue)": ["common_name": "soba",
|
196
|
+
|
197
|
+
"common_imagePath": "unnamed.jpg",
|
198
|
+
|
199
|
+
"common_time": "20 minutes",
|
200
|
+
|
201
|
+
"common_calorie": "200 calorie",
|
202
|
+
|
203
|
+
"common_ingredients": [["name": "water",
|
204
|
+
|
205
|
+
"quanitity": "500cc"],
|
206
|
+
|
207
|
+
["name": "soba",
|
208
|
+
|
209
|
+
"quantity": "2 or 3 bundle"],
|
210
|
+
|
211
|
+
["name":"mentsuyu",
|
212
|
+
|
213
|
+
"quantity":"150cc"]]
|
214
|
+
|
215
|
+
]
|
216
|
+
|
217
|
+
]
|
218
|
+
|
219
|
+
```
|
220
|
+
|
169
221
|
|
170
222
|
|
171
223
|
追記:あと、できればセルを押した後選択が解除されるようにしたいです。
|