I am currently working in an application with several views, 30+ ViewControllers. I use a storyboard to connect a stream of views together.
I would like that when the user goes from one ViewController, when they return to this view, he remains in the same state with the same changes that the user has entered. (in UITextFeild, UILabel, UITextView, etc.)
I, since I have so many views, it would be ideal not to store information in global variables, either with:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
Thanks in advance, Relations
source share