我想像这样添加自定义tableviewcell分隔符
------------ -----------细胞
---自定义演员---
------------ -----------细胞
---自定义演员---
我试过了
在故事板中的单元格下添加uiview并连接
@IBOutlet weak var sperator: UIView!
在cellForRow cellForRowAtIndexPath
中添加代码override func tableView(tableView: UITableView, cellForRowAtIndexPathindexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("MainListCell",forIndexPath: indexPath) as! MainTableViewCell
let list = List(index: indexPath.row)
cell.titleLabel.text = list.title!
cell.titleIcon.image = list.icon!
cell.detailTitleLabel.text = list.detailtitle!
cell.coinCountLabel.text = "X0"
cell.addSubview(self.sperator)
return cell
}
但是,我可以看到UIView :(
答案 0 :(得分:0)
如果您更改了一个代码,则可以看到sperator line
cell.contentView.caddSubview(self.sperator)