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