Hi, little bit late to the game, but i just got this in my app after compiling with xcode 13.
I followed the advice from @Rincewind and got it working, with one exception:
When you change the appearances, the navigation text, is then black, not white. The back arrow is still white though.
I managed to sort this out by doing the "largeTextAttributes"-dance :
coloredAppearance.titleTextAttributes = [.foregroundColor: UIColor.white] coloredAppearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
However, i am surprised that this is not mentioned by anyone in this thread. Howcome i am the only one having this color issue? Am i missing something?
Pointers appreciated.