标签: swift xcode cocoa-touch uistoryboard
我在storyboard中设置了dataProvider对象
在故事板中链接它我在运行时遇到错误。
[TableApp.ItemListViewController tableView:numberOfRowsInSection:]:无法识别的选择器发送到实例0x7f84f6803a70'
但是在我的ViewDidLoad
我无法弄清楚为什么请帮助我理解。
答案 0 :(得分:0)
我猜你错误地链接了它们。
您需要将UITableViewDelegate添加到超类
UITableViewDelegate
和viewDidLoad
viewDidLoad
self.tableView.delegate = self self.tableView.dataSource = self
确保按以下方式链接tableView
。
你应该有这个!