I can’t figure out how to refresh a ViewController, i have searched all google and this site, im stuck. My simple application is based on storyboard, and it start on a UITabBarController and i want it to refresh every time the settings is changed from another ViewController. That means i have to TabBar items one is the ( mainview with labels ) the other one is ( settings ) is there a simple way to to this?
Share
You can save changed data in
NSUserDefaultsin settings , then when back to mainview, use saved data in-(void)viewWillAppear:(BOOL)animated:method in mainviewController or-drawView:method in mainview.