티스토리 뷰
반응형
네비게이션/탭 바 색깔 바꾸는 방법
AppDelegate.swift파일에서, 가장 위에 있는 함수.
앱이 실행될때 불리는 함수입니다. 여기서 네비게이션/탭 바의 색깔을 바꿔줄 수 있어요.
//Navigation Bar
UINavigationBar.appearance().barTintColor = UIColor(red: 0, green: 0/255, blue: 205/255, alpha: 1)
또는
UINavigationBar.appearance().barTintColor = UIColor.blue
//Tab Bar
UITabBar.appearance().barTintColor = UIColor(red: 0, green: 0/255, blue: 205/255, alpha: 1)
UITabBar.appearance().barTintColor = UIColor.blue
위 방법은 앱 내의 모든 네비게이션/탭 바의 색깔을 바꿔주는 역할을 하기 때문에,
특정한 뷰의 네비게이션/탭 바의 색깔을 바꿔주고싶다면, viewWillAppear()에 위 코드를 넣어주세요 :)
반응형
'iOS' 카테고리의 다른 글
iOS ) 왕초보를 위한 네이버 지도 API 써보기 (2/2) (17) | 2017.08.13 |
---|---|
iOS ) 왕초보를 위한 네이버 지도 API 써보기 (1/2) (9) | 2017.08.12 |
iOS ) firebase로 회원가입 기능 만들어보기! (4) | 2017.08.07 |
iOS ) firebase로 로그인기능 만들어보기! (2) | 2017.08.05 |
왕초보를 위한 UserNotifications사용해보기 (10) | 2017.08.03 |
TAG
- swift 공부
- FLUTTER
- swift sort
- Swift
- iOS delegate
- Accessibility
- IOS
- 스위프트
- fastlane
- WWDC
- swift delegate
- 스위프트 문법
- swift array
- 피아노
- UIBezierPath
- Xcode
- Git
- ios 13
- WidgetKit
- swift3
- swift tutorial
- np-complete
- Combine
- actor
- WKWebView
- SwiftUI
- 회고
- np-hard
- 제이슨 파싱
- github
글 보관함
반응형
- Total
- Today
- Yesterday