Is there is a way that do CATransition and display a label in front of animation?
I try to d开发者_如何转开发isplay a UILabel in front of CATransition animation using insertSubView
[self.view insertSubview:myLabel atIndex:10000];
but it does not work. Is there is a way that do CATransition and display a label in front of animation?
Welcome any comment
You could use a CAAnimationGroup class to make 2 concurrent animations, your animation and the appearance of your UILabel.
精彩评论