即使我查看了包含相同问题的其他线程,我也不知道为什么会这样,为什么会这样说。
我的代码如下所示:
centerFit
我曾尝试使用建议的代码,但没有运气。
答案 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
的签名也是错误的。所有参数都是非可选值。