我有这段代码:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: IndexPath) as? Cell
但IndexPath显示错误:
答案 0 :(得分:2)
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: IndexPath) as? Cell
在此行中,您将从函数中传递IndexPath
类而不是indexPath
参数。将其替换为:
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as? Cell