由于某些原因,滚动时我的自定义表格单元格未正确显示。我做错了什么?
这是我的代码:
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
}
答案 0 :(得分:1)
您在故事板/ xib中可能存在使用单元格的约束问题。
答案 1 :(得分:0)
根据上面的回答,我错误地将视图直接添加到单元格而不是cell.contentView。这也可能导致约束问题