Is it possible to make a custom push view controller animation like the image? The basic idea is to push the view normally, but without moving the current view (that calls the pushViewController...).

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sure, that can be done. I made a project where I did it like this:
The view controllers that I slid in were subclasses of RDSlideController (so I could have the presentingVC property and some other things), but that’s not really necessary. Basically, you just instantiate the new controller, set its view’s frame to be off screen to the right, add that view to the window, then animate the frame to the current view’s frame. Finally, you switch out the view controllers so that the new one is now the root view controller of the window.