iOS UINavigationController - kgleong/software-engineering GitHub Wiki

UINavigationController

Customizing the Navigation Bar

// Button colors
navigationController?.navigationBar.tintColor = UIColor.white

// Title color
navigationController?.navigationBar.titleTextAttributes =
    [NSForegroundColorAttributeName: UIColor.white]

References