CATransition page curl from top

十年热恋 提交于 2019-12-04 20:44:40

Found the answer, need to set subtype to from right!

user363349

I've got this working. You need to set animation.type = @"pageUnCurl"; - who would have thought! Thanks apple.

CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:0.5];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
animation.type = @"pageUnCurl";

animation.subtype = kCATransitionFromTop;
animation.fillMode = kCAFillModeForwards;
animation.startProgress = 0.3;
[animation setRemovedOnCompletion:NO];

[self.helpView.layer addAnimation:animation forKey:@"pageCurlAnimation"];
soufiane
subtype = KCATransitionFromLeft or KCATransitionFromRight 

you can also remove the animation.endProgress if you want a total animation of curl page . =)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!