使用tableview函数时出现错误

时间:2018-10-02 14:49:22

标签: ios swift uitableview

程序正在成功构建,但是当进入仿真时,它将崩溃,并将致命错误消息记录到控制台。

触发错误的行是:

fun pair ([], _) = []
  | pair (_, []) = []
  | pair (x::xs, ys) = <something involving x and ys, suitably combined with 'pairs (xs, ys)'> 

enter image description here

2 个答案:

答案 0 :(得分:0)

单元格返回零吗?您需要确保将情节提要中的UITableViewCell的正确标识符传递给withIdentifier: "cell"参数。另外,出现此错误时正在向控制台记录什么?很多时候它将指向解决方案。

答案 1 :(得分:0)

在情节提要中提供相同的标识符“单元格”。