I need to re-create my current UIViewController
in my iOS application on applicationDidBecomeActive
. In my code, I adding a lot of runtime graphics to screen, so I think best way to completely recreate it.
I need to solve 2 tasks:
- Determine, which UIViewController currently on display (I change view controllers with presentModalViewController command).
- Completely repaint it.
Can anybody help me?