質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,3 +25,9 @@
|
|
25
25
|
これらの画像をリサイズして一定にしたいです。
|
26
26
|
|
27
27
|
わかる方よろしくお願いします。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
![イメージ説明](31861c8c714c96190e1d33260cd3e476.png)
|
32
|
+
|
33
|
+
以上のように、元画像サイズのまま表示されるため、右側がそろわず、バラバラになってしまいます
|
1
書き方の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
```lang-Swift
|
6
|
+
|
5
|
-
|
7
|
+
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
|
6
8
|
|
7
9
|
let cell = UITableViewCell(style: .Default,reuseIdentifier: "Q")
|
8
10
|
|
@@ -16,7 +18,7 @@
|
|
16
18
|
|
17
19
|
}
|
18
20
|
|
19
|
-
|
21
|
+
```
|
20
22
|
|
21
23
|
このimageは配列で読み込んでいるのですが、画像の大きさがバラバラなので、はみ出して見えます。
|
22
24
|
|