We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
facing issue to give space between sections please help.
The text was updated successfully, but these errors were encountered:
You can use footer views between your section and give them the desired height.
Sorry, something went wrong.
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { return 1.0 } override func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { // UIView with background for section-separators as Section Footer let v = UIView(frame: CGRect(x: 0, y:0, width: tableView.frame.width, height: 1)) v.backgroundColor = .lightGray return v }
No branches or pull requests
facing issue to give space between sections please help.
The text was updated successfully, but these errors were encountered: