質問編集履歴
1
ソースコードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
###該当のソースコード(言語/FW/ツール等のバージョンなど)
|
14
14
|
|
15
|
-
```
|
15
|
+
```swift
|
16
16
|
|
17
17
|
//スタンプ画像の色を変更(RGB,CMYK,White,Oldgreen,Gray :10colors)
|
18
18
|
|
@@ -40,22 +40,22 @@
|
|
40
40
|
|
41
41
|
@IBAction func changeColors() {
|
42
42
|
|
43
|
-
let Image = ...
|
43
|
+
let Image = ...
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
-
|
47
|
+
//ボタンを識別する方法(ex.colorRedボタンが押された場合)
|
48
48
|
|
49
|
-
let RedColor:UIColor = UIColor.redcolor()
|
49
|
+
let RedColor:UIColor = UIColor.redcolor()
|
50
50
|
|
51
|
-
Image.tintColor = RedColor;
|
51
|
+
Image.tintColor = RedColor;
|
52
52
|
|
53
53
|
|
54
54
|
|
55
|
-
ImageView.addSubview(Image)
|
55
|
+
ImageView.addSubview(Image)
|
56
|
-
|
57
|
-
}
|
58
56
|
|
59
57
|
}
|
60
58
|
|
61
59
|
'''
|
60
|
+
|
61
|
+
```
|