I have a method
- (void) swipeRight
{
[self dismissViewControllerAnimated:YES completion:nil];
}
Which I am using to dismiss the view controller when the user swipes right. I dont really like the animation that apple provides when you dismiss the view controller (page goes down) and I want to change it to a different one that apple provides, while still using the dismissViewControllerAnimated method. Can anyone help me change this?