質問編集履歴
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,3 +21,217 @@
|
|
21
21
|
label.text の部分のエラーを取りたい。
|
22
22
|
|
23
23
|
UILabelだとどうしてもエラーが出てしまうのでどうすればいいのかを知りたい
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```ここに言語を入力
|
28
|
+
|
29
|
+
import UIKit
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate{
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
@IBOutlet weak var mytableView: UITableView!
|
38
|
+
|
39
|
+
var add = UILabel()
|
40
|
+
|
41
|
+
let item = [""]
|
42
|
+
|
43
|
+
//var longPressRecognizer: UILongPressGestureRecognizer!
|
44
|
+
|
45
|
+
//+ボタン
|
46
|
+
|
47
|
+
@IBAction func addlabel(_ sender: Any) {
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
alert()
|
52
|
+
|
53
|
+
//label()
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
//ラベルについて
|
60
|
+
|
61
|
+
func label(){
|
62
|
+
|
63
|
+
add = UILabel(frame: CGRect(x: 130, y:250, width: 100, height:20))
|
64
|
+
|
65
|
+
//ラベルの大きさ、座標指定
|
66
|
+
|
67
|
+
//add.text = "labelです"
|
68
|
+
|
69
|
+
//文字を変更
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
add.backgroundColor = UIColor.lightGray
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
add.font = UIFont.systemFont(ofSize: 30)
|
78
|
+
|
79
|
+
//文字の大きさ
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
add.textColor = UIColor.black
|
84
|
+
|
85
|
+
//文字カラー
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
add.sizeToFit()
|
90
|
+
|
91
|
+
//文字数にあわせてlabelの大きさを変更(サイズが文字にフィットする)
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
self.view.addSubview(add)
|
96
|
+
|
97
|
+
//実際にviewに見える形でlabelが出現する
|
98
|
+
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
func alert(){
|
104
|
+
|
105
|
+
// テキストフィールド付きアラート表示
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
let alert = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: .alert)
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
// OKボタンの設定
|
114
|
+
|
115
|
+
let okAction = UIAlertAction(title: "OK", style: .default, handler: {
|
116
|
+
|
117
|
+
(action:UIAlertAction!) -> Void in
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
// OKを押した時入力されていたテキストを表示
|
122
|
+
|
123
|
+
if let textFields = alert.textFields {
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
// アラートに含まれるすべてのテキストフィールドを調べる
|
128
|
+
|
129
|
+
for textField in textFields {
|
130
|
+
|
131
|
+
self.label()
|
132
|
+
|
133
|
+
self.add.text = textField.text!
|
134
|
+
|
135
|
+
self.add.sizeToFit()
|
136
|
+
|
137
|
+
print(textField.text!)
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
}
|
142
|
+
|
143
|
+
})
|
144
|
+
|
145
|
+
alert.addAction(okAction)
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
// キャンセルボタンの設定
|
150
|
+
|
151
|
+
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
|
152
|
+
|
153
|
+
alert.addAction(cancelAction)
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
// テキストフィールドを追加
|
158
|
+
|
159
|
+
alert.addTextField(configurationHandler: {(textField: UITextField!) -> Void in
|
160
|
+
|
161
|
+
textField.placeholder = "テキスト"
|
162
|
+
|
163
|
+
})
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
alert.view.setNeedsLayout() // シミュレータの種類によっては、これがないと警告が発生
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
// アラートを画面に表示
|
172
|
+
|
173
|
+
self.present(alert, animated: true, completion: nil)
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
182
|
+
|
183
|
+
return add
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
190
|
+
|
191
|
+
return item.count
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
198
|
+
|
199
|
+
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
|
200
|
+
|
201
|
+
let item = add
|
202
|
+
|
203
|
+
cell.textLabel?.text = item[indexPath.row]
|
204
|
+
|
205
|
+
return cell
|
206
|
+
|
207
|
+
}
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
override func viewDidLoad() {
|
214
|
+
|
215
|
+
super.viewDidLoad()
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
override func didReceiveMemoryWarning() {
|
224
|
+
|
225
|
+
super.didReceiveMemoryWarning()
|
226
|
+
|
227
|
+
// Dispose of any resources that can be recreated.
|
228
|
+
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
}
|
236
|
+
|
237
|
+
```
|