I'm stuck in this for some time now... I'm not so experienced with coding but I'm trying...
In my app I use the BOOL backFromBack like this in the AppDelegate.h:
BOOL backFromBack;
Then I set it to yes in the .m file when application enters background.
Now I want to use an
if (backFromBack)
In my viewController but how can I pass this BOOL from the delegate to the viewController?
Any help is great!