make section title use consistent case (uppercase)
This commit is contained in:
parent
88bf3a0d18
commit
4baf0b0bf3
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ class AboutTableViewController: BasicStaticTableViewController {
|
||||||
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
||||||
if section == 1 {
|
if section == 1 {
|
||||||
let view = UITableViewHeaderFooterView()
|
let view = UITableViewHeaderFooterView()
|
||||||
view.textLabel?.text = "Acknowledgements"
|
view.textLabel?.text = "Acknowledgements".uppercased()
|
||||||
return view
|
return view
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue