まずUITableViewを貼り付けます。
制約を追加して画面一杯に表示します。
UITableViewCell を UITableView に貼り付けます。
identifierをmyCellにします。
Table View から右ドラッグで View Controllerに
dataSoruceとdelegateを紐付けます。
ソースコードを開きViewContorollerに
UITableViewDelegate, UITableViewDataSource
の2つのプロトコルを追加します。
そして下のソースコードを貼り付けます。
3つ目の関数内でタップされた行番号を取得できています。
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 20 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "myCell", for: indexPath as IndexPath) return cell } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { print("タップされた行: \(indexPath.row)") }
参考URL:https://capibara1969.com/634/