UITableViewDataSource和HomeModel都不符合ViewController

时间:2016-10-20 21:06:05

标签: ios xcode swift3

即使我查看了包含相同问题的其他线程,我也不知道为什么会这样,为什么会这样说。

我的代码如下所示:

centerFit

我曾尝试使用建议的代码,但没有运气。

1 个答案:

答案 0 :(得分:0)

在Swift 3中

numberOfRowsInSection是:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int

cellForRowAt indexPath是:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

您可以轻松找到自己:注释掉整个方法并重新键入第一个字母tableV,然后查看完成代码的建议。

即使在Swift 2中,cellForRowAtIndexPath的签名也是错误的。所有参数都是非可选值。