用数据填充表视图

时间:2017-02-21 20:10:09

标签: swift

所以即时尝试使用存储在" 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        
}

1 个答案:

答案 0 :(得分:0)

在您的分段数据源调用的行数中,请确保您返回eventsArray.count