I'm currently in the midst of creating an app that requires a very nifty transition. I would like to be able to;
Invoke my [self presentModalViewControllerAnimated:YES]; and, instead of having CrossDissolve, Generic Flip, or CoverVertical, I would like to employ CoreAnimation to force it to flip from the right edge. Notice how the normal flip uses the Central Axis? Well, I would like to move that from the Center to the Right Edge, giving the flip a more "In Your Face" effect, similar to the ZuneHD's UI.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])
{
self.wantsFullScreenLayout = YES; // we want to overlap the status bar.
// when presented, we want to display using a cross dissolve
self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
}
return self;
}
Is how I am currently getting the ViewController's transition set. If possible, I would like the CoreAnimation Right Edge flip to be set here.
If Microsoft can do it, It MUST be possible on the iPhone. Can anyone help me?