ios 15后自定义navigationcontroller背景和title颜色

    let barApp = UINavigationBarAppearance()
    barApp.configureWithOpaqueBackground()
    barApp.backgroundColor = UIColor.white
    barApp.titleTextAttributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 17), NSAttributedString.Key.foregroundColor: UIColor.black]
    navigationBar.standardAppearance = barApp
    navigationBar.scrollEdgeAppearance = barApp

你可能感兴趣的:(ios 15后自定义navigationcontroller背景和title颜色)