滚动时,自定义表格未正确显示

时间:2016-01-04 21:02:19

标签: ios swift uitableview

由于某些原因,滚动时我的自定义表格单元格未正确显示。我做错了什么?

这是我的代码:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("RestaurantCell", forIndexPath: indexPath) as! RestaurantCell
    cell.name?.text = "Some test value"

    return cell
}

以下是它的外观: enter image description here

2 个答案:

答案 0 :(得分:1)

您在故事板/ xib中可能存在使用单元格的约束问题。

答案 1 :(得分:0)

根据上面的回答,我错误地将视图直接添加到单元格而不是cell.contentView。这也可能导致约束问题