Skip to content
Snippets Groups Projects

Fixes for 'connections' flow

2 files
+ 9
1
Compare changes
  • Side-by-side
  • Inline

Files

@@ -71,6 +71,14 @@ final class ContactListTableController: UITableViewController {
return cell
}
override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
if let headerView = view as? UITableViewHeaderFooterView {
headerView.textLabel?.textColor = .black
headerView.contentView.backgroundColor = .white
headerView.backgroundView?.backgroundColor = .black
}
}
override func numberOfSections(in tableView: UITableView) -> Int {
sections.count
}
Loading