所以即时尝试使用存储在" events"数组中的信息来填充表格中的行。其中事件是具有位置和标题数据的对象。由于某种原因,我在评论的那一行得到一个错误的指令错误线程1。知道为什么吗?
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {// this sets the title and subtitle to the Title and Location in the given EventPlan
let cell = tableView.dequeueReusableCell(withIdentifier: Storyboard.EventCellIdentifier, for: indexPath)
cell.textLabel?.text = eventsArray[indexPath.row].title // Error here
cell.detailTextLabel?.text = eventsArray[indexPath.row].location
return cell
}
答案 0 :(得分:0)
在您的分段数据源调用的行数中,请确保您返回eventsArray.count