내비게이션 컨트롤러 아래의 색을 바꾸는 방법

2598 단어 Swift
NavigationContronContller 아래(TabBar)의 색상을 변경하기 어려워서 기록을 남깁니다.
기본적으로 탐색 ContronContller 아래는 흰색과 파란색
import UIKit

class TabBarViewController: UITabBarController {

    override func viewDidLoad() {
        super.viewDidLoad()
UITabBar.appearance().barTintColor = UIColor(red: 174/255, green: 238/255, blue: 226/255, alpha: 1)//下の色(デフォルトで白)


        UITabBar.appearance().tintColor = UIColor(red: 0/255, green: 0/255, blue: 0/255, alpha: 1)//上の色(デフォルトで青)

    }
}

좋은 웹페이지 즐겨찾기