Fixes Settings tab bar appearance on iOS 15

This commit is contained in:
Riley Testut
2021-10-06 12:16:47 -07:00
parent f0a48a70ed
commit 3914803157

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)