Hi guys, I have a question.
I'm developing an app that needs to have its UI-text in multiple languages. I have setup the Localized.strings file and when my app runs for the first time everything loads and displays just fine(Correct language based on default value).
BUT when i change the language value inside my settings View, none of the other rendered views get the updated value.(which is as expected)
So my question is, how would one tell all the views they need to update their text?
I have tried .SetNeedsDisplay() but that doesn't seem to do the trick. Also tried to empty my NavigationController:
this.NavigationController.PopToRootViewController(true);
This just throws me to my main menu but all the views are still presented in the old language.
All help appreciated!