From 1b16193e214691ca2c490f979e0e5f85d8f3f452 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 6 Oct 2021 12:16:47 -0700 Subject: [PATCH] Fixes Settings tab bar appearance on iOS 15 --- AltStore/Settings/SettingsViewController.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AltStore/Settings/SettingsViewController.swift b/AltStore/Settings/SettingsViewController.swift index accc7c4d..d43baa53 100644 --- a/AltStore/Settings/SettingsViewController.swift +++ b/AltStore/Settings/SettingsViewController.swift @@ -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)