OS
1 - только между той что по середине (наверное
viewForHeaderInSection
/ viewForFooterInSection
)2 - только вот такой длинны.
если делаю отступ то сама полоска тоже становится толстой:
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return
30
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let v = UIView(frame: CGRect(x: 15, y:0, width: 100, height: 1))
v.backgroundColor = .lightGray
return v
}