So I was attempting to use this code to switch between views:

CATransition *applicationLoadViewIn = [CATransition animation];

    [applicationLoadViewIn setDuration:1];

    [applicationLoadViewIn setType:kCATransitionReveal];

    [applicationLoadViewIn setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];

    MyViewControllerClass *theControllerIAmSwitchingTo = [[MyViewControllerClass alloc] init];

    [[theControllerIAmSwitchingTo.view layer] addAnimation:applicationLoadViewIn forKey:kCATransitionReveal];

But, the code doesn't work. There are no errors, and the code executes fine, but it just doesn't do anything. What do I have wrong here?

link|improve this question

65% accept rate
Are you testing it on simulator? – Madhup Dec 22 '10 at 7:20
Yes,....,...... – Regan Dec 22 '10 at 7:38
I have posted an answer please have a look at this. – Madhup Dec 22 '10 at 8:39
feedback

2 Answers

up vote 1 down vote accepted

You need to add the animation to the layer of parent view, then add the view as a subview of the parent view.

So instead of

[[theControllerIAmSwitchingTo.view layer] addAnimation:applicationLoadViewIn forKey:kCATransitionReveal];

You need to use

[parentView.layer addAnimation:animation forKey:kCATransitionReveal];
[parentView addSubview:theControllerIAmSwitchingTo.view];
link|improve this answer
feedback

Just do it like:

 CATransition *applicationLoadViewIn = [CATransition animation];

    [applicationLoadViewIn setDuration:1];

    [applicationLoadViewIn setType:kCATransitionReveal];

    [applicationLoadViewIn setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]];

    MyViewControllerClass *theControllerIAmSwitchingTo = [[MyViewControllerClass alloc] init];

    [[theControllerIAmSwitchingTo.view layer] addAnimation:applicationLoadViewIn forKey:kCATransitionReveal];

    [self.navigationController pushViewController:theControllerIAmSwitchingTo animated:NO];

I noticed the problem is that you are not adding your view in your navigation stack and that is why your view does not get loaded and you see no animation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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