为什么我的UITableView在故事板中没有代理插座?

时间:2017-05-19 12:38:31

标签: swift uistoryboard

我想知道为什么我的tableview在故事板中没有代理插座,只有数据源?enter image description here

这是否有原因?

修改

当我控制单击TableView时会发生这种情况 enter image description here

这是我的ViewController中的IBOutlet:enter image description here

1 个答案:

答案 0 :(得分:0)

拖动并连接委托和dataSource,如下所示: enter image description here

另外请确保您的viewController符合协议。

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {}