vote up 0 vote down star

if i run following gives error,current controller is table controller....

SetController *aSecondView = [[SetController alloc] initWithNibName:@"Sets" bundle:nil]; SchedAppDelegate *mainDelegate = (SchedAppDelegate *)[[UIApplication sharedApplication] delegate]; [mainDelegate setSettingsViewController:aSecondView]; [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:2.0]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:[[self view] superview] cache:YES]; [self.view removeFromSuperview]; [self presentModalViewController:aSecondView animated:NO]; //[aSecondView release]; [UIView commitAnimations];

flag

54% accept rate

2 Answers

vote up 2 vote down check

It appears that mView is a UIViewController and not a UIView.

This is the proper way to apply a custom animation to a modal view controller:

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:[self view] cache:YES];
[self presentModalViewController:mView animated:NO];
[UIView commitAnimations];
link|flag
did you run it,i checked ,it did not work for UIViewAnimationTransitionFlipFromRight – senthilmuthu Oct 6 at 9:41
have you tried forView:[[self view] superview] instead? Also, I don't have your code, so there's no way I'd be able to test it – rpetrich Oct 6 at 21:26
i tried it. but i could not do it.i have edited with my complete code can u see and answer? – senthilmuthu Oct 8 at 7:56
vote up 0 vote down

If mView is a view controller, you can present it with a flip animation by doing the following:

mView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:mView animated:YES];

The modalTransitionStyle property is only available for iPhone OS 3.0 onwards. Hope this helps. :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.