微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

XIB 文件中的 TableView 导致错误

如何解决XIB 文件中的 TableView 导致错误

我正在尝试在 XIB 文件添加 tableView,但出现此错误this class is not key value coding-compliant for the key tableView. 。我以前从未使用过 XIB 文件,所以我不确定可能是什么问题

这是我加载 XIB 的方式:

let scoresVC = UIViewController(nibName: "LivescoresViewController",bundle: nil)
navigationController?.pushViewController(scoresVC,animated: true)

class LivescoresViewController: UIViewController,UITableViewDelegate,UITableViewDataSource  {
    
    @IBOutlet weak var tableView: UITableView!

    

    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.dataSource = self
        tableView.delegate = self
        tableView.register(UINib(nibName: "LivescoreCell",bundle: nil),forCellReuseIdentifier: "LivescoreCell")
    }
}

XIB set up

解决方法

问题是 let scoresVC = UIViewController(nibName: "LiveScoresViewController",bundle: nil) 这一行。你需要像这样改变:

let scoresVC = LiveScoresViewController(nibName: "LiveScoresViewController",bundle: nil)
,

您正在创建一个普通的 UIViewController 并告诉它从 LiveScoresViewController.xib 加载其视图。您需要创建一个 LiveScoresViewController 实例。这应该有效:

let scoresVC = LiveScoresViewController()

对象将使用自己的类名来查找 xib。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。