質問編集履歴
2
コード記述を変更した為
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,17 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
|
19
|
+
@IBAction func goodButton(_ sender: Any) {
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
count = count + 1
|
26
|
+
|
27
|
+
print(count)
|
28
|
+
|
29
|
+
LikeImage = KensakuImage //←の後なんて記述すれば上手くLikeImageに押下時の画像が入るのか
|
20
30
|
|
21
31
|
```
|
22
32
|
|
@@ -54,7 +64,9 @@
|
|
54
64
|
|
55
65
|
var count = 0
|
56
66
|
|
67
|
+
|
68
|
+
|
57
|
-
var
|
69
|
+
var LikeImage = [UIImage]()
|
58
70
|
|
59
71
|
|
60
72
|
|
@@ -164,13 +176,27 @@
|
|
164
176
|
|
165
177
|
|
166
178
|
|
179
|
+
|
180
|
+
|
167
181
|
count = count + 1
|
168
182
|
|
183
|
+
print(count)
|
184
|
+
|
185
|
+
LikeImage = KensakuImage //←の後なんて記述すれば上手くLikeImageに押下時の画像が入るのか
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
169
|
-
selectimages.append(
|
193
|
+
// selectimages1.append()
|
194
|
+
|
195
|
+
|
170
196
|
|
171
197
|
if count == 10 {
|
172
198
|
|
173
|
-
|
199
|
+
|
174
200
|
|
175
201
|
|
176
202
|
|
@@ -204,8 +230,6 @@
|
|
204
230
|
|
205
231
|
|
206
232
|
|
207
|
-
|
208
|
-
|
209
233
|
}
|
210
234
|
|
211
235
|
|
@@ -222,15 +246,23 @@
|
|
222
246
|
|
223
247
|
// 遷移先 = GoodViewController
|
224
248
|
|
225
|
-
let goodView = segue.destination as
|
249
|
+
let goodView = segue.destination as? GoodViewController
|
226
250
|
|
227
251
|
// GoodViewControllerの中のselectimages
|
228
252
|
|
253
|
+
print(KensakuImage)
|
254
|
+
|
255
|
+
|
256
|
+
|
229
|
-
goodView.selectimages = se
|
257
|
+
goodView?.selectimages = KensakuImage.image!
|
230
|
-
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
|
262
|
+
|
231
|
-
}
|
263
|
+
}
|
232
|
-
|
233
|
-
|
264
|
+
|
265
|
+
|
234
266
|
|
235
267
|
}
|
236
268
|
|
@@ -260,6 +292,10 @@
|
|
260
292
|
|
261
293
|
}
|
262
294
|
|
295
|
+
|
296
|
+
|
297
|
+
|
298
|
+
|
263
299
|
```遷移先
|
264
300
|
|
265
301
|
```
|
@@ -274,11 +310,11 @@
|
|
274
310
|
|
275
311
|
@IBOutlet weak var tableView: UITableView!
|
276
312
|
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
313
|
+
|
314
|
+
|
315
|
+
|
316
|
+
|
281
|
-
var selectimages =
|
317
|
+
var selectimages = UIImage()
|
282
318
|
|
283
319
|
|
284
320
|
|
@@ -292,6 +328,8 @@
|
|
292
328
|
|
293
329
|
tableView.dataSource = self
|
294
330
|
|
331
|
+
print(selectimages)
|
332
|
+
|
295
333
|
|
296
334
|
|
297
335
|
|
@@ -306,7 +344,7 @@
|
|
306
344
|
|
307
345
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
308
346
|
|
309
|
-
return
|
347
|
+
return 10
|
310
348
|
|
311
349
|
}
|
312
350
|
|
@@ -334,7 +372,7 @@
|
|
334
372
|
|
335
373
|
let imageView = cell.contentView.viewWithTag(1) as! UIImageView
|
336
374
|
|
337
|
-
|
375
|
+
imageView.image = selectimages
|
338
376
|
|
339
377
|
return cell
|
340
378
|
|
@@ -364,13 +402,27 @@
|
|
364
402
|
|
365
403
|
### 試したこと
|
366
404
|
|
367
|
-
var
|
405
|
+
var LikeImage = [UIImage]()の画像が入る配列を作り
|
368
|
-
|
406
|
+
|
369
|
-
タップ
|
407
|
+
ボタンが10回タップの時だけ入るようにしたかったので
|
370
|
-
|
408
|
+
|
371
|
-
|
409
|
+
@IBAction func goodButton(_ sender: Any) {
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
|
372
|
-
|
415
|
+
count = count + 1
|
416
|
+
|
417
|
+
print(count)
|
418
|
+
|
419
|
+
LikeImage = KensakuImage //←の後なんて記述すれば上手くLikeImageに押下時の画像が入るのか
|
420
|
+
|
421
|
+
調べて入力したりするも上手く行かない
|
422
|
+
|
373
|
-
|
423
|
+
調べては書き直したりしているのでコードがめちゃくちゃになっておりますが、暖かい目でご回答いただけると幸いです。
|
424
|
+
|
425
|
+
|
374
426
|
|
375
427
|
|
376
428
|
|
@@ -380,7 +432,7 @@
|
|
380
432
|
|
381
433
|
Xcode 12.5
|
382
434
|
|
383
|
-
ios 14
|
435
|
+
ios 14.6
|
384
436
|
|
385
437
|
|
386
438
|
|
1
遷移先のImageViewを誤って繋げていたので訂正のため質問にてコードを修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -274,7 +274,7 @@
|
|
274
274
|
|
275
275
|
@IBOutlet weak var tableView: UITableView!
|
276
276
|
|
277
|
-
|
277
|
+
|
278
278
|
|
279
279
|
|
280
280
|
|