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.
|
feedback
|
|
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.
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... | |||||
feedback
|