无法识别的选择器发送到实例

时间:2017-02-06 22:07:22

标签: swift xcode cocoa-touch uistoryboard

我在storyboard中设置了dataProvider对象 enter image description here

在故事板中链接它我在运行时遇到错误。

[TableApp.ItemListViewController tableView:numberOfRowsInSection:]:无法识别的选择器发送到实例0x7f84f6803a70'

但是在我的ViewDidLoad

中的代码中可以做到这一点

我无法弄清楚为什么请帮助我理解。

1 个答案:

答案 0 :(得分:0)

我猜你错误地链接了它们。

您需要将UITableViewDelegate添加到超类

viewDidLoad

self.tableView.delegate = self
self.tableView.dataSource = self

确保按以下方式链接tableView

IMG1IMG2

你应该有这个!

You should end up with this