[TIL] iOS 상단 바 UI

Captainjack·2022년 2월 11일
0

TIL

목록 보기
185/258

let coloredNavAppearance = UINavigationBarAppearance()


init() {
        coloredNavAppearance.configureWithOpaqueBackground()
        coloredNavAppearance.backgroundColor = UIColor.black
        coloredNavAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]
        coloredNavAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]

        UINavigationBar.appearance().standardAppearance = coloredNavAppearance
        UINavigationBar.appearance().scrollEdgeAppearance = coloredNavAppearance

    }

잠시 대기..

profile
til' CTF WIN

0개의 댓글