I guess this has being asked before, but i couldn't find answer.
When i am replacing views, i would like that the first view,will slide from left to right (like a scroll view) .
But there is not option for that in the UIViewAnimationOptionTransition
UIViewController *mainV=[self.storyboard instantiateViewControllerWithIdentifier:@"CallTestView"];
AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[UIView transitionFromView:delegate.window.rootViewController.view
toView:mainV.view
duration:1.75f
options:UIViewAnimationOptionTransitionFlipFromLeft
completion:^(BOOL finished)
{
delegate.window.rootViewController=mainV;
}];