回答編集履歴
1
修正1
test
CHANGED
@@ -52,7 +52,7 @@
|
|
52
52
|
|
53
53
|
UIImage(named: "defaultPhoto.png")!]
|
54
54
|
|
55
|
-
loadImage()
|
55
|
+
loadImage() // imagesの画像を表示
|
56
56
|
|
57
57
|
// 識別するためにtag設定
|
58
58
|
|
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
imageView5.addGestureRecognizer(tapGesture)
|
82
82
|
|
83
|
-
|
83
|
+
// imagePickerControllerの設定
|
84
84
|
|
85
85
|
imagePickerController.sourceType = .photoLibrary
|
86
86
|
|
@@ -94,13 +94,13 @@
|
|
94
94
|
|
95
95
|
imageView1.image = self.images[0]
|
96
96
|
|
97
|
-
imageView2.
|
97
|
+
imageView2.image = self.images[1]
|
98
98
|
|
99
|
-
imageView3.
|
99
|
+
imageView3.image = self.images[2]
|
100
100
|
|
101
|
-
imageView4.
|
101
|
+
imageView4.image = self.images[3]
|
102
102
|
|
103
|
-
imageView5.
|
103
|
+
imageView5.image = self.images[4]
|
104
104
|
|
105
105
|
}
|
106
106
|
|
@@ -130,6 +130,8 @@
|
|
130
130
|
|
131
131
|
// ~~ 他も省略
|
132
132
|
|
133
|
+
loadImage() // 最後にloadImageで再読み込みを忘れずに。
|
134
|
+
|
133
135
|
}
|
134
136
|
|
135
137
|
}
|