自作したカスタムセルを自分の画面に表示したいのですが表示されなのは何故なのでしょうか。

画像の説明をここに入力
画像の説明をここに入力
画像の説明をここに入力


class TableViewSkillController: UIViewController, UITableViewDelegate, UITableViewDataSource {


    @IBOutlet weak var myTableView: UITableView!
    @IBOutlet weak var addSkill: UIBarButtonItem!

    override func viewDidLoad() {
        super.viewDidLoad()

    self.myTableView.register(UINib(nibName: "TableViewCell", bundle: nil), forCellReuseIdentifier: "TableViewCell")

    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 1
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

       let cell = tableView.dequeueReusableCell(withIdentifier: "TableViewCell") as! TableViewCell

        cell.skillName.text = "〇〇〇〇〇〇"
        cell.goalCountNumber.text = "20 : 00"

        return cell
    }

    @IBAction func addSkillButton(_ sender: UIBarButtonItem) {
    }


}


import UIKit

class TableViewCell: UITableViewCell {

    @IBOutlet weak var skillName: UILabel!
    @IBOutlet weak var goalCountNumber: UILabel!


    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }




    @IBAction func ToEachSkillButton(_ sender: Any) {


    }


}

↑↑これからコードの中身を入れるつもりです。