The workflow of my app is when I lost connection I redirect the app to a specific viewController
, then on the viewWillAppear
I do some treatment.
In the foreground
mode this works perfectly.
In the background
mode, the redirection is performed, but the viewWillAppear
is not fired.
Is there any equivalent for viewWillAppear
or any other way to check if the viewController
has appeared while on background
?