IOS swift如何在tableView单元格中创建一条小水平线

时间:2016-10-23 22:22:56

标签: swift uitableview swift3

我有一个tableView UI,我想在TableViewCell内的某个字段下面创建一个小的水平线,例如它的外观,我想在位置下方的水平线:GA,Atlanta。这就是主要故事板的外观。我只想在原型单元格中的位置字段下方创建一条细灰色水平线。任何建议都会很棒。我找到了一种创建一条线的方法,但它主要是在TableCell的末尾创建一个边框,这不是我需要的。

Emulator Image

ProtoType Cell

我的TableView代码如下

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
    {

        let mycell = self.StreamsTableView.dequeueReusableCell(withIdentifier: "prototype1", for: indexPath) as! HomePage_TableViewCell





        return mycell
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
    {
        tableView.backgroundColor = UIColor.clear
        return names.count
    }

1 个答案:

答案 0 :(得分:3)

您可以通过添加View(UIView)控件并将高度设置为1,从Xcode界面构建器执行此操作。

enter image description here