hi,i coded in button action like
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:mainDelegate.window cache:NO];
[mainDelegate.window addSubview:[self.calcentryController view]];
[UIView commitAnimations];
it works fine,but when i use in calcentryController.m in one action
[self presentModalViewController:self.weeklyScoreController animated:YES];
to go another viewcontroller , it is not working any help pls?