如何添加自定义tableviewcell分隔符?

时间:2016-02-12 02:59:44

标签: ios xcode swift uiview

我想像这样添加自定义tableviewcell分隔符

------------ -----------细胞

---自定义演员---

------------ -----------细胞

---自定义演员---

我试过了

  1. 在故事板中的单元格下添加uiview并连接

    @IBOutlet weak var sperator: UIView!
    
  2. 在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
    }
    
  3. 但是,我可以看到UIView :(

1 个答案:

答案 0 :(得分:0)

如果您更改了一个代码,则可以看到sperator line

cell.contentView.caddSubview(self.sperator)