첫번째로 연결된 탭바 아이템에 대응하는 뷰컨트롤러에서 탭바의 배경이 제대로 보이지만, 2, 3번째부터는 보이지 않고 투명하게 설정되는 현상이 되었다.
if #available(iOS 15, *) {
let appearance = UITabBarAppearance()
let tabBar = UITabBar()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = UIColor(named: "당신의색깔을넣으셈요")!
tabBar.standardAppearance = appearance;
UITabBar.appearance().scrollEdgeAppearance = appearance
}