回答編集履歴

4

ss

2020/08/12 00:05

投稿

_Kentarou
_Kentarou

スコア8490

test CHANGED
@@ -161,3 +161,7 @@
161
161
 
162
162
 
163
163
  ![イメージ説明](b5a7e7ce040e1d0e7c193262184db28e.png)
164
+
165
+
166
+
167
+ ![イメージ説明](52f2ce70099490c775813cfd1e434db1.png)

3

s

2020/08/12 00:05

投稿

_Kentarou
_Kentarou

スコア8490

test CHANGED
@@ -54,7 +54,7 @@
54
54
 
55
55
  let space = UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil)
56
56
 
57
- let doneButton = UIBarButtonItem(title: "Done", style: .done, target: self, action: #selector(tappedDone(_:)))
57
+ let doneButton = UIBarButtonItem(title: "Done", style: .done, target: self, action: #selector(ViewController.tappedDone))
58
58
 
59
59
  toolbar.items = [space, doneButton]
60
60
 
@@ -68,7 +68,7 @@
68
68
 
69
69
 
70
70
 
71
- @objc func tappedDone(_ sender: UIBarButtonItem) {
71
+ @objc func tappedDone() {
72
72
 
73
73
  textField.resignFirstResponder()
74
74
 

2

image

2020/08/11 23:58

投稿

_Kentarou
_Kentarou

スコア8490

test CHANGED
@@ -157,3 +157,7 @@
157
157
  }
158
158
 
159
159
  ```
160
+
161
+
162
+
163
+ ![イメージ説明](b5a7e7ce040e1d0e7c193262184db28e.png)

1

s

2020/08/11 23:55

投稿

_Kentarou
_Kentarou

スコア8490

test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 以下の2つのファイルでそのまま動くと思うので、`Storyboard`に `UITextFiled`を乗せ(クラスはカスタムクラスを指定)、`IBOutlet`を結んで試してみてください。
5
+ 以下の2つのファイルでそのまま動くと思うので、`Storyboard`の`ViewController`に `UITextFiled`を乗せ(クラスはカスタムクラスを指定)、`IBOutlet`を結んで試してみてください。
6
6
 
7
7
 
8
8