Describes an animation that provides keyframe interpolation of a layer property.

learn more… | top users | synonyms

1
vote
1answer
48 views

Changing the speed of a CAKeyframeAnimation mid-animation in iOS

I am trying to allow the user to change the speed of my animation. I am making a CAKeyframeAnimation with a bezier path, and I can get it to display and run correctly. I try to change the speed by ...
0
votes
0answers
64 views

AVFoundation export video with animation at specific time duration in previously recorded video?

I am using AVAssetExportSession to export video with my animation at specific time. It was running fine before 2 days. Now i changed something and it stopped working i don't know what is wrong with ...
0
votes
1answer
66 views

Move layer with CAKeyframeAnimation - layer back to first position

At first to move my layer from point to point I use that code: CABasicAnimation *anim = [CABasicAnimation animationWithKeyPath:@"position"]; anim.timingFunction = ...
0
votes
2answers
77 views

Move to few point with CAKeyframeAnimation

I have code : NSMutableArray * pathArray = [[NSMutableArray alloc]init]; CGPoint currentPoint = CGPointMake(xp, yp); [pathArray addObject:[NSValue valueWithCGPoint: currentPoint]]; NSMutableArray * ...
0
votes
0answers
52 views

How can I make two CAKeyframeAnimations run simultaneously on different layers?

I set up two animations with the code below: CAKeyframeAnimation *fadeWorldOutThenIn = [CAKeyframeAnimation animationWithKeyPath:@"opacity"]; fadeWorldOutThenIn.duration = 0.8f; ...
0
votes
1answer
56 views

CAKeyframeAnimation for Sprite Animation

i'm trying to animate a sprite-sheet made with Texture Packer using Core Animation. I have a NSCollection with all my sprite contents. (Keys and CGImageRef's) My Collection { "caja01.png" = ...
0
votes
1answer
80 views

CALayer setPosition not called during animation

I have a custom CALayer that I am animating using a CAAnimationGroup to follow a path and rotate at a tangent to the path: // Create the animation path CAKeyframeAnimation *pathAnimation = ...
0
votes
1answer
41 views

Starting a CAKeyframeAnimation from a non-zero time

I have a sub-layer keyframe animation defined to animate an image along a BSpline, grouped together with a rotate animation. With the sub-layer.speed set to 0, I can drag the image back and forth ...
1
vote
1answer
30 views

How do I use keytimes in CAKeyFrameAnimation to animate the opacity of a layer?

I am trying to animate a layer so that the opacity goes from 0 to 1 in about 0.2 seconds, keep the opacity at 1 for a second, and then put the opacity back at 0. I'm trying to use key times to do it, ...
0
votes
1answer
30 views

Detecting which frame being displayed in CAKeyframeAnimaton

I need to display information about the current fey frame image that is being displayed via a CAKeyframeAnimation. So when the image at "values" index 0 is displayed show information in some ...
1
vote
1answer
111 views

Sequential CAKeyFrameAnimations disappearing on screen

EDIT: Attached code for CAAnimationGroup, the animations draw sequentially, but I'm still getting the problem that firstAnimation disappears once secondAnimation starts and I've noticed in the ...
0
votes
0answers
116 views

Animate views(layers) using CAKeyframeAnimation in a loop and CAAnimationGroup

I am trying to animate several views (layers) using CAKeyframeAnimation and CAAnimationGroup. Each view to be animated is contained in an array. My idea is to loop through the array where ...
1
vote
1answer
69 views

Efficient animation of time-variant drawing using CAKeyFrameAnimation

My current goal is to animate the drawing of a picture in my iOS app so that a user could see something like http://www.youtube.com/watch?v=xlDmk5WdaHk happening on their screen. The acceleration of ...
0
votes
1answer
52 views

How to tell which UIImageView stopped animating using CAKeyFrameAnimation?

I am programatically creating UIImageViews of an iVar called *fly. I am calling a series of methods containing different CAKeyFrameAnimations. These methods are chained together using the ...
0
votes
1answer
89 views

CAKeyframeAnimation not animating until I rotate device

I seem to be missing the obvious when animating a key frame. I have looked at many code samples including Apple's MoveMe, referenced in the CAKeyframeAnimation documentation, yet, I cant find a ...
0
votes
1answer
92 views

iOS CAKeyframeAnimation strange image rotation

I'm facing a strange issue on CAKeyFrameAnimation. Here's the code: //Inside the selector method of the button CAKeyframeAnimation *anim = [CAKeyframeAnimation animationWithKeyPath:@"position"]; ...
1
vote
3answers
326 views

CAKeyFrameAnimation delays before repeating

I have an ball image that I'm animating around a path. The animation is set to repeat forever, but why is there a delay between repeats? Here's my code: CGPathRef aPath; aPath = ...
1
vote
2answers
68 views

How do I know the number of iterations an animation(CAKeyFrameAnimation) did on finish when repeatCount is huge_val?

I am working on a car race game where each car runs in a path. Since the race is time based I have the repeatCount set to a bug value. Now the problem is that I cant figure how many laps are completed ...
0
votes
1answer
67 views

How to write a Bezier curved path on the fly with one fixed point and one changing

If I have an object performing this CAKeyframe Animation path (it is just an oval shape in the upper region of an iphone.. UIBezierPath *trackPath = [UIBezierPath ...
0
votes
1answer
44 views

Two CGpaths - 1 CAAnimation - but the second path should be repeated

If I have a path which starts at the top of the screen and eases down into an oval shape. I would like to once in the oval shape for the animation to keep repeating the oval shape. How do I do this ...
1
vote
1answer
355 views

CAKeyFrameAnimation of transform property on CALayer not working as expected

I have been working at this for a while and searched SO thoroughly for a solution but to no avail. Here is what I am trying to do. I have a UIScrollView on which the user can zoom and pan for 5 ...
1
vote
1answer
65 views

Temporarily set anchor point of UIView, until after keyframe animation

Setting the anchor point of my UIView (to 0.5, 1.0) causes all sorts of issues with my layout. Can't I just temporarily change it for as long as I need it to do so?
6
votes
1answer
744 views

Cannot get current position of CALayer during animation

I am trying to achieve an animation that when you hold down a button it animates a block down, and when you release, it animates it back up to the original position, but I cannot obtain the current ...
0
votes
1answer
97 views

CAKeyframeAnimation with Path build with CGPathAddArcToPoint doesn't work

I have a keyframeAnimation and I define a Path, but the animation doesn't work. Do you see anything wrong? :S Here is the code: CAKeyframeAnimation *animKF = [CAKeyframeAnimation ...
0
votes
1answer
70 views

RotationMode doen't work in a CAKeyframeAnimation (linear path)

I try to make my view rotate as long as it goes through the path (linear path) but it doesn't rotate. This is my code: CAKeyframeAnimation *animKF = [CAKeyframeAnimation ...
0
votes
0answers
39 views

CA 3D rotation about x, causes y position of view to move

I am aiming to make my UINavigationBar flip down. So I wrote the following code: CAKeyframeAnimation *pageCurlFall = [CAKeyframeAnimation animationWithKeyPath:@"transform"]; NSArray *keyTimes = ...
1
vote
1answer
199 views

CAKeyframeAnimation path to Define Opacity?

Can CAKeyframeAnimation be used with a path instead of keyframe values to animate (non-position) properties? Here is the key code: CAKeyframeAnimation *theLeftGradientAnimation = [CAKeyframeAnimation ...
0
votes
0answers
101 views

modifying dynamically the duration of CAKeyframeAnimation

In my code I create a CAKeyframeanimation with an infinite repeat count, add it to a specific CALayer. I would like to modify the duration (= the speed) of the animation while animating, without the ...
0
votes
0answers
95 views

curve Animation direction of rotation?

In my application I use the following animation to make my UIElement follow a circle path in clockwise direction CGMutablePathRef path = CGPathCreateMutable(); CGPathAddArc(path, ...
1
vote
3answers
302 views

UIButton doesn't receive touch after CAKeyframeAnimation

My situation: I've a UIButton that it's animate with a CAKeyframeAnimation that's declared as a category on UIView: CAKeyframeAnimation * scale = [CAKeyframeAnimation ...
0
votes
0answers
34 views

Put UIImage View in between circle

Hello friends i am creating circle using CGPath and i want put image view in this circle like ring and finger. What to do to accomplish this task?? Please if anybody have idea then please tell me. ...
0
votes
1answer
137 views

How to Animate UIView embedded in UITableViewCell

On didSelectRowAtIndexPath, I am reloading selected row and changing heightForRowAtIndexPath so that selected tableview cell can expand. This is working fine. So as soon reloading expanding done I ...
0
votes
0answers
328 views

Pause and Play CAKeyFrameAnimation in iOS

I'm doing animation for calayer using CAkeyframeanimation.Actually i`m moving the calayer using the position property by using the CAkeyframeanimation.I want to pause the calayer moving animation.When ...
1
vote
1answer
505 views

Gradually Decrease CAShapeLayer wrt radius

I have a UIImageView with image just like above so what i have to do is gradually decrease and increase the shape of the image. For achieving above task obviously I have to apply mask so I have ...
0
votes
0answers
171 views

Understanding CAKeyframeAnimation for Transform

I'm working with a UIImageView and trying to scale it multiple times to simulate a coin flip. I'm able to do this with CGAffineTransformScale except that there's pauses at random times: ...
0
votes
1answer
269 views

Memory Management for CGImageCreateWithImageInRect used for CAKeyFramAnimation

I'm using CAKeyFrameAnimation to animate few png images. I cut them from one png image by using CGImageCreateWithImageInRect When I run Analyze function in XCode it shows me potential memory leaks. ...
0
votes
0answers
126 views

CAKeyframeAnimation - blink when switching animations

I have a problem with my animations. I mean animation with series of images played on UIImageView. I have some game objects with few actions each. Every action has own animation. When the application ...
1
vote
2answers
500 views

CAKeyframeAnimation : contents change back to first image when stopped

I animate the content of CALayer using the following code CAKeyframeAnimation *countanimation = [CAKeyframeAnimation animation]; NSArray *images = [NSArray arrayWithObjects:(id)[UIImage ...
2
votes
1answer
237 views

How do I synchronize change in a UILabel text with a related animation?

I have an animation of a drinking glass filling up from empty to full, using CAKeyframeAnimation. The animation works perfectly fine. I need to update a UILabel with the percentage corresponding to ...
1
vote
1answer
368 views

CAKeyframeAnimation using UIImages not working

I am setting up the animation as so: self.testAnimation = [CAKeyframeAnimation animationWithKeyPath:@"TestAnimation"]; [self.animationImagesAsCGImages addObject:( id )[UIImage ...
1
vote
2answers
241 views

Delay in key frame animation when running first time

I am using key frame animation to animate a sequence of images. But when I run it for the first time there is a delay before animation begins. After that it runs smoothly. I tried force loading all ...
0
votes
1answer
124 views

keep calayer from moving to original position

CAKeyframeAnimation *anim = [CAKeyframeAnimation animationWithKeyPath:@"position"]; NSArray *times = [NSArray arrayWithObjects:[NSNumber numberWithFloat:0.0], [NSNumber numberWithFloat:0.33], ...
0
votes
0answers
93 views

Avoid glitch when stopping CAKeyframeAnimation

I've a UIImageView* on which I apply a CAKeyframeAnimation. When I stop it, using the removeAllAnimations, I get the frame with this code: myView.frame=[myView.layer.presentationLayer frame]; but ...
7
votes
4answers
1k views

UIViewControllers Transitions Effect Like iBook's Book opening effect ? iphone

i have been working on application which is clone of iBook, and since last 2 days i have been trying to animate the book cover flow like iBook app perform . This is iBook ScreenShot , i have my book ...
2
votes
2answers
153 views

Adding new animation to the existing one

I my application i want to move UIImageView from the default position to the point where user has tapped. But if before completing this animation user again taps on other point, that imageView should ...
0
votes
0answers
217 views

iOS- Syncing an animation group with drawing a line

My issue is similar to Drawing a path with CAKeyFrameAnimation on iPhone. What I would like to happen is this: There is an object that moves along a user-defined path. The path will move forward ...
2
votes
0answers
294 views

CAKeyframeAnimation repeat after a delay

I have 3 uiviews which have a CAKeyframeAnimation layer added to them to bounce. Currently i add these to each uiview after a delay and set them to repeat. What i need them to do is repeat but after ...
1
vote
1answer
230 views

CAKeyframeAnimation Keypath Error

I am trying to animate the transform property of a view. Here is my code: CAKeyframeAnimation *shakeAnimation = [CAKeyframeAnimation animationWithKeyPath:@"transform"]; NSArray *transformValues = ...
1
vote
1answer
222 views

Using CAKeyFrameAnimation (or something else?) to make image bounce with RubyMotion

I am new to Core Animation and new to RubyMotion (have been working with Obj-C in Xcode since January). I'm needing to have the AppLabel (the png for it is specified in file called AppAppearance.rb ...
0
votes
3answers
426 views

2 animations on same object, only last shows. How to show first one w/o nesting completion block?

I'm doing two animations on the same UIImageView, using blocks. Animations are not quite back to back, but almost; there is some logic inbetween. animate UIImageView from one location on the view to ...

1 2 3