Working on an objective-c video project. On the video player I have a button that returns the user back to a menu screen.
In my PlayerViewController.m, I have:
- (IBAction)unloadPlayer:(id)sender
{
[self dismissViewControllerAnimated:YES completion:nil];
}
It works, however it pushes the screen from the top down. What I would like to do is push in from the left to right. How can this be done?
Thanks!