Swift当中使用UITableView的时候添加代理UITableViewDataSource的时候
报错“type ”does not conform to protocol ‘UITableViewDataSource’”
这个错误是要实现UITableViewDataSource这个代理的方法
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath){
tableView.deselectRowAtIndexPath(indexPath, animated: true)
}
实现这几个代理方法就不会报错了。