My use case as follows:
- VC1 - Root Controller
- VC2 & VC3 are different view controllers
- VC1 is delegate of VC2
- VC1 presents VC2
- Then as delegated, VC1 dismiss VC2
- Right after dismiss VC2, VC1 presents VC3
In the last step my transition goes bad as after dismissVC2 and beforePresentVC3, VC1 is visible during transition
How can I fix this problem or is it even possible??
NOTE: I want VC1 in window herirarchy so that I can go to VC1 from VC3