본문 바로가기

IOS

Navigation Bar, Status Bar 색상을 바꿔보자

네이티브 앱에서 네비게이션바 색상이나 상태바 색상을 바꾸는 경우가 많다.

 

스토리 보드에서 바꾸는 방법도 있지만 신기하게 상태바와 네비게이션 바 색상이 미세하게 다른경우가 있다

 

그래서 코드로 새로 작성한다 

 

RGB 값을 HEX 값을 사용하기 위해 UIColor를 확장하며 해당 셋팅은 BaseController 에서 사용 하였다 (일반 Controller 에서 사용가능)

 

----------------------------------------------------------------------------------------------------------------------------

 

1. UIColor 확장

 

2. 상태바 색상 변경 (StatusBar)

 

3. 네비게이션바 색상 변경 (텍스트 색상 포함)

 

출처 : https://freakycoder.com/ios-notes-13-how-to-change-status-bar-color-1431c185e845

 

iOS Notes 13: How to change Status Bar Color on iOS 13 and Below? [UPDATED v2]

You can change the status bar colour just with a single line of code.

freakycoder.com

https://sarunw.com/posts/uinavigationbar-changes-in-ios13/

 

UINavigationBar changes in iOS13 | Sarun

Apple brings a lot of appearance changes in iOS13, and the navigation bar is one of them. Cover everything you should know once you build your app against iOS13 (Xcode11).

sarunw.com