I have three controllers (FirstVC, SecondVC, ThirdVC) inside storyboad, and navigation is sequential: a user can present modally SecondVC from FirstVC. and then present modally ThirdVC from SecondVC. Now, I need to make some button that will open ThirdVC from FirstVC but will also put SecondVC on in between, so when a user will press back/Cross from ThirdVC he will be returned to SecondVC. So, I don’t need animation from FirstVC to SecondVC, just need to go SecondVC and then animate only transition to ThirdVC.
I found same question for push sague How to push two view controllers but animate transition only for the second one?. I need same behaviour with present modally.