My problem is this. I need when the user starts my app, it comes back with the data that was on the screen before closing it. So my initial idea is when the app goes into Background it records a Plist with the information that was on the screen and when it starts again it loads this Plist and sends it to the ViewController where it finds this information ...
But how do I pass the information loaded in the AppDelegate to my ViewController?
PS: Feel free to question my solution and / or give a more plausible solution to the problem.