Swift开发教程--实现UITableView报错does not conform to protocol 'UITableViewDataSource‘

前端之家收集整理的这篇文章主要介绍了Swift开发教程--实现UITableView报错does not conform to protocol 'UITableViewDataSource‘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

通过实践,要是把下面三个协议方法都实现了就不会报错了。另外还需要注意!的问题。

func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int{
}
func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{

tableView.deselectRowAtIndexPath(indexPath,animated: true)

}

原文链接:https://www.f2er.com/swift/327050.html

猜你在找的Swift相关文章