Fixes Settings tab bar appearance on iOS 15

This commit is contained in:
Riley Testut
2021-10-06 12:16:47 -07:00
parent 203aec2854
commit 1b16193e21

View File

@@ -109,6 +109,11 @@ class SettingsViewController: UITableViewController
self.tableView.contentInset.bottom = 20
self.update()
if #available(iOS 15, *), let appearance = self.tabBarController?.tabBar.standardAppearance
{
self.navigationController?.tabBarItem.scrollEdgeAppearance = appearance
}
}
override func viewWillAppear(_ animated: Bool)