Posts

Post marked as solved
3 Replies
I found the correct answer. The code looks now like this:if (@available(iOS 13, *)) { UINavigationBarAppearance *navBar = [[UINavigationBarAppearance alloc] init]; navBar.backgroundColor = COLOR_HEADER_LIGHT; [navBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: COLOR_TEXT_WHITE, NSForegroundColorAttributeName, nil]]; self.navigationController.navigationBar.standardAppearance = navBar; self.navigationController.navigationBar.scrollEdgeAppearance = navBar; }