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
Hi,
If I use method for custom section header view than header is not presented properly:
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
Can you provide me instructions what should I do to make this work, thank you.
The text was updated successfully, but these errors were encountered:
Any solution on this issue?
Sorry, something went wrong.
Hi! You can use 'viewForFooterInSection' method in UITableViewDelegate and added UILabel().
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { let label = UILabel() label.text = messages.sectionInfoAtIndex(section).name label.textColor = UIColor.white.withAlphaComponent(0.4) label.center = tableView.center label.font = UIFont.boldSystemFont(ofSize: 10) label.textAlignment = .center return label }
It's work for me
@dufflink It works except for the section index NOT reversed, right? fyi: #58 😉
No branches or pull requests
Hi,
If I use method for custom section header view than header is not presented properly:
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
Can you provide me instructions what should I do to make this work, thank you.
The text was updated successfully, but these errors were encountered: