I am making a tab bar application. In AppDelegate
in method -(void)applicationDidBecomeActive I have a string of code:
[self.window addSubview:pass.view];
So every time when app becomes active, pass.view
appears. And when user makes all work in this view, I want to close this view and return to AppDelegate
or any tab in the app. How do I return from pass.view
?