CAAnimation is an abstract animation class from Apple QuartzCore framework. It provides the basic support for the CAMediaTiming and CAAction protocols.
5
votes
3answers
1k views
How to chain different CAAnimation in an iOS application
I need to chain animations, CABasicAnimation or CAAnimationGroup but I don't know how to do it, the only that I do is that all the animation execute at the same time for the same layer.
How could I ...
4
votes
3answers
3k views
iphone: how to do Page turning
I am facing the problem from a month and didn't find anything from google..
I am using UIView for pdf display. there is no problem with pdf but problem is with transition. I have to turn each page of ...
0
votes
1answer
449 views
How can I callback as a CABasicAnimation is animating?
I have an animation I'm using to snap a rotatable UIView to a circular grid. As the view animates, I need to update another view based on the rotating views position.
How can I go about getting the ...
5
votes
1answer
2k views
Fade background-color from one color to another in a UIView
How can I fade from one background-color to another color in a UIView?
In javascript (jQuery) it can be done by doing the following:
$('body').animate({ backgroundColor: "#ff00ff"});
Would it be ...
3
votes
1answer
878 views
UIImageView is disappearing after CAKeyframeAnimation
I'm trying this code (found in an answer here on SO) in a category on UIView and am using it to peform a "pop" animation on a UIImageView nested inside of a UITableViewCell.
- ...
4
votes
4answers
3k views
How to flip a UIView around the x-axis while simultaneously switching subviews
This question has been asked before but in a slightly different way and I was unable to get any of the answers to work the way I wanted, so I am hoping somebody with great Core Animation skills can ...
4
votes
3answers
811 views
How to resume a CAAnimation after coming back from multitasking
in my app i have an array of CALayer that I have animated along a bezierPath. When I close and reopen the app my layers are not animating and not in the same position as before closing the app. I have ...
1
vote
1answer
555 views
wiggle animation in objective C
I have multiple animate-able/interactive UIImageViews on my UIView which would animate/interact based on user touches. I am trying to add a feature which would "wiggle" these animate-able/interactive ...
2
votes
0answers
103 views
Swing Animation on basis of gravity iOS
I am developing a photography based application. In this application i need a special kind of animation. when used touches an ImageView it should swing and anchor point will be the touch point. i have ...
2
votes
2answers
1k views
CALayer Positioning After Object Has Moved
I animate my UIImageView with CAAnimation using layer property like so:
[imageView.layer addAnimation:pathAnimation forKey:[NSString stringWithFormat:@"pathAnimation%@",objId]];
But at the end ...
1
vote
1answer
1k views
CAAnimation - change properties in the last frame of the animation?
I'm animating a UIView (or rather its CALayer) and at the end of the animation it is no longer visible (I do a 3D transform so that it rotates about y by 90°, imagine a door opening towards you), ...
1
vote
2answers
992 views
Low frame rate during UINavigationController push transition
I have a UINavigationController, and push from the root view controller to the next view controller. This second view controller is fairly "heavy", in that it has a great deal of initialization and ...
1
vote
1answer
718 views
CABasicAnimation animates everything when it should only animate one thing
I made a bunch of little individual pictures, each with a separate CALayer, and they're supposed to fade in and out asynchronously at different rates. Each has a background sublayer and a fill ...
