I have an application that wants to log out when the application is inactive for a certain period of time. These are several different views in the application, and I want the application delegate to set loginview as the current view whenever this method fires:
- (void)applicationDidBecomeActive:(UIApplication *)application
How to manually set loginViewController as current displaying the view in the storyboard in this method?
source share