[iOS] 탭바가 투명해지는 현상 고치는 방법

RudinP·2024년 5월 23일
0

Study

목록 보기
228/258

첫번째로 연결된 탭바 아이템에 대응하는 뷰컨트롤러에서 탭바의 배경이 제대로 보이지만, 2, 3번째부터는 보이지 않고 투명하게 설정되는 현상이 되었다.

이를 수정하는 방법은 AppDelegate.swift 파일의 didFinishiLaunchingWithOptions 메소드 안에 아래 코드를 작성하는 것이다.

if #available(iOS 15, *) {
            let appearance = UITabBarAppearance()
            let tabBar = UITabBar()
            appearance.configureWithOpaqueBackground()
            appearance.backgroundColor = UIColor(named: "당신의색깔을넣으셈요")!
            tabBar.standardAppearance = appearance;
            UITabBar.appearance().scrollEdgeAppearance = appearance
        }
profile
iOS 개발자가 되기 위한 스터디룸...

0개의 댓글