I'm using CATransition to slide subviews of UIView. But the problem is that the CATransition always appears in whole screen. And it looks like a mess because I have another UI elements in window that become overlapped while transitioning. How can I restrict frame of transition by UIView frame? I tried to set clipToBounds of my UIView to YES. Actually it doesn't help.

link|improve this question
feedback

1 Answer

Just add another "clipping" subview UIView to the topmost UIView. Place it above the subviews that will be animated and make its frame clip the animation.

mainView.frame       = CGRectMake(0,0,200,200);
animationsView.frame = CGRectMake(0,0,200,200);
clippingView.frame   = CGRectMake(100,0,100,200);
clippingView.backgroundColor = [UIView blackColor];

[mainView addSubview:animationsView];
[mainView addSubview:clippingView];

When You add a CATransition animation to the animationsView, it will be displayed underneath the clippingView, since the clippingView is the top subview of mainView and is of blackColor.

You could also use a UIView with a transparent image as its content and overlay it over the animated views...

link|improve this answer
could you elaborate on your transparent image suggestion? I want to mask the push, but let the GUI underneath show. When I use a transparent image, I can see the push through it. – Lou Franco Jan 29 at 23:17
make the image exactly what the background is. in this case transparent won't do. – kitschmaster Feb 25 at 8:12
feedback

Your Answer

 
or
required, but never shown

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