我正在尝试为我的iOS
应用设置名单页面,以显示数据列表。每当我显示数据时,我都会收到NSException
并发信号SIGABRT
我尝试查找内容,但没有发现如何使用UITable
修复此错误。我也将UITable链接到该项目
let list = ["Driver 1 ", "Driver 2"]
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return(list.count)
}
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = UITableViewCell(style: UITableViewCell.CellStyle.default, reuseIdentifier: "cell")
cell.textLabel?.text = list[indexPath.row]
return(cell)
}
我期望的是显示数据并像我的android app一样显示到可以在其中切换表的位置。并且还显示了3行,分别是车手号码团队所有者和车手。但是我遇到了这些错误。
答案 0 :(得分:0)
您可以尝试像这样重新使用单元格:
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
var cell : UITableViewCell!
cell = tableView.dequeueReusableCell(withIdentifier: "cell")
if cell == nil
{
cell = UITableViewCell(style: .default, reuseIdentifier:"cell")
}
cell.textLabel?.text = list[indexPath.row]
return(cell)
}
答案 1 :(得分:0)
您不应该像在这里那样自己创建新的TotalHours
UITableViewCell
只需让let cell = UITableViewCell(style: UITableViewCell.CellStyle.default, reuseIdentifier: "cell")
为您创建一个单元格即可。您的代码应如下所示:
tableView