🍎 iOS/UI
[iOS/UI] 네비게이션 바 틴트 및 타이틀 컬러바꾸기
Fomagran 💻
2020. 6. 29. 21:17
728x90
반응형
1
2
3
4
5
6
7
8
|
//iOS 13이상일 때 타이틀 컬러 바꾸는 법
if #available(iOS 13.0, *) {
navigationController?.navigationBar.standardAppearance.titleTextAttributes = [.foregroundColor: UIColor.white]
} else {
navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.white]
}
//바 틴트 바꾸는 것
self.navigationController?.navigationBar.barTintColor = UIColor.darkGray
|
cs |
다음과 같이 변하게 된다!
728x90
반응형