我在Swift 3.0中的xCode中创建表视图,但是这个错误一直出现。当我用另一个&#39 ;;'修复它时,它会显示另一个错误"预期声明"。 任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
Swift中的返回类型运算符是->
而非->
可能是您从浏览器或其他地方复制和粘贴代码,因此只需将其替换为->
即可。同样在Swift 3中,这些方法的签名也会改变,所以应该是这样。
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
return UITableViewCell()
}