Swift TableView UItableviewDatasource

时间:2016-02-18 11:06:37

标签: ios swift

Trying to implement UItableDatasource but always seeing this error

“几个小时前,我刚刚实施了简单的单元格而不是自定义单元格”

1 个答案:

答案 0 :(得分:0)

您需要实施cellForRowAtIndexPath方法,例如:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell

您已在代码中添加了该方法。但返回类型不同,这就是编译器抛出错误的原因。将返回类型从TableViewCell更改为UITableViewCell