UITableView の使い方ですが、numbrOfRowsInSection で 3 を返しているので、cellForRowAt は row 0, row 1, row 2 に対して呼ばれて、それぞれ「ハングル」「カナルビ」「ニホンゴ」のものを返す必要があるかと思います。
なお、storyboard や iOS シミュレーターは画像 (スクリーンショット) で構いませんが、Swift のソースコードは <code> 機能を使って テキストで貼っていただけると助かります。
swift
1 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
2 if indexPath.row == 0 {
3 let cell = tableView.dequeueReusableCell(withIdentifier: "firstIdentifier", for: indexPath)
4 return cell
5 } else if indexPath.row == 1 {
6 let cell = tableView.dequeueReusableCell(withIdentifier: "secondIdentifier", for: indexPath)
7 return cell
8 } else if indexPath.row == 2 {
9 let cell = tableView.dequeueReusableCell(withIdentifier: "thirdIdentifier", for: indexPath)
10 return cell
11 } else {
12 return UITableViewCell()
13 }
14 }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/28 08:55 編集