iOS) UINavigationBar 의 large title 색 설정

less than 1 minute read

navigationBar 에서 large title 의 color 를 바꾸려 하였다.

uinavigationbar 개발문서에서 bar’s appearance 가 아닌 bar object 위의 appearance 의 속성을 보고싶었다.

  • lagacy customizations

  • largeTitleTextAttributes

  • font, text color, text shadow color and text shadow offset 에 대한 특정 속성 설정이 가능하다.
self.navigationController?.navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor(hex: reminderColor)]

Apple Developer Documentation - UINavigationBar

Categories:

Updated: