开发者

2 CATransition, left and right

开发者 https://www.devze.com 2023-03-03 04:43 出处:网络
I am trying to develop a simple CATransition that shows an UIView appearing from the left. Here it is the code:

I am trying to develop a simple CATransition that shows an UIView appearing from the left.

Here it is the code:

CATransition *transDerecha=[CATransition animation];
        [transDerecha setDuration:1];
        [transDerecha setStartProgress:0];
        [transDerech开发者_运维问答a setType:kCATransitionMoveIn];
        [transDerecha setSubtype:kCATransitionFromLeft];
        [transDerecha setDelegate:self];

Ok, but to get the aspect that i am looking for, i have created a UIView (blue one on the video).

I think that in the following video, you can see better what i am trying to say. http://screencast.com/t/JMQmxe7CGy

The problem comes when i try to make the same thing on the left. If i create another UIView to cover the left UIView, it will cover also the right cover.

So, is there any other CATransition type to make that? Or any solution?

ThankS!!!


I dont think you need to dive down to CA to do this kind of thing. It can be done using UIView animations. Here http://www.raywenderlich.com/2454/how-to-use-uiview-animation-tutorial is a good tutorial on UIView animations.

0

精彩评论

暂无评论...
验证码 换一张
取 消