I created a simple tab bar app with 2 view controllers - FirstViewController
and SecondViewController
. I added the following to the First, why doesn't this animate?
- (void)viewWillAppear:(BOOL)animated
{
[UIView transitionWithView:self.view
duration: 2.0
options:UIViewAnimationOptionAllowUserInteraction | UIViewAnimationOptionTransitionCrossDissolve
animations:^(void){
[super viewWillAppear:YES ];
} completion:^(BOOL finished){}];
}