Tagged Questions

All Core Animation's animation classes descend from the abstract class CAAnimation. CAAnimation adopts the CAMediaTiming protocol which provides the simple duration, speed, and repeat count for an animation. CAAnimation also adopts the CAAction protocol. This protocol provides a standardized means ...

learn more… | top users | synonyms

5
votes
3answers
907 views

Implementing a CATransition push with CAAnimation

How do you implement kCATransitionPush using CAAnimation subclasses in iOS? CAAnimation *animation; // How do you create an animation that does the same than: // CATransition *animation = ...
5
votes
0answers
466 views

CAAnimationGroup with different interface elements

I want to crossfade two NSViews and resize their NSWindow. I know how to do them separately but so far not how to do it simultaneously. I think I need a CAAnimationGroup for it. But because I'm ...
3
votes
1answer
527 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
255 views

iPhone: Synchronize animations on two different layers

I need to synchronize a path animation on two different layers (one is used as a mask for another layer, the other shows a graphical element that follows the path, i.e. draws the mask). If I just set ...
3
votes
3answers
2k 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 ...
2
votes
2answers
221 views

Animate UIView to fold one half onto the other half

I have the following problem. I want to write a method with which i can fold one half of a UIView onto the other half. The algorithm is clear to me (at least i think so, but maybe i forgot ...
2
votes
2answers
414 views

CATransition in Custom Segue

I was wondering if it is possible to use a CATransition within a custom Segue Transition. I created my CustomSegueTransition.m file and referenced it in my custom segue class where i want the ...
2
votes
1answer
121 views

Is it possible to control a CAAnimation's timeline?

I have a complex animation that usually runs just by itself, driven by a certain CAMediaTimingFunction. This works fine. Now, I want to control that same animation's time(line) using an external ...
2
votes
0answers
64 views

Animate Frame Size in Cocoa plus notification on animation end

At the moment i have this code: [[myView animator] setFrameSize:NSMakeSize(300, 150)]; And at the end of the animation i need to launch other operations so i need to know about that. On the ...
2
votes
3answers
212 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 ...
2
votes
1answer
168 views

CAAnimation on a UIButton

I have been trying to create a simple swipe transition. However buttons seem immune to any CAAnimation that crops. I am trying to get it so that a bar moves across the screen and as it goes over the ...
2
votes
1answer
385 views

Stop CABasicAnimation from being removed after completion

Hey, I have this code snippet (duration is .5, amount is 1.5) CABasicAnimation *grow = [CABasicAnimation animationWithKeyPath:@"transform"]; grow.duration = duration; grow.repeatCount = 0; ...
2
votes
1answer
431 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. - ...
1
vote
2answers
42 views

Best pattern for handling touches in an animated UIView/CALayer?

I have a UIView instance that I am animating using CAKeyframeAnimation. It is a looping animation and will be constantly in motion. However, I need to allow user interaction with the item ...
1
vote
1answer
77 views

AQGridView cells get swapped around when CAAnimation is applied

Has anyone had success applying animations to AQGridViewCells? I'm trying to make every cell but the first one fade away after a tap. The problem is that when the fade begins, the cell contents ...
1
vote
1answer
72 views

How to change polygon shape in CAShapeLayer by tapping its corners?

I am drawing a CAShapeLayer with a polygon with 8 corners. I want to change the shape of the polygon by dragging one or multiple corners at a time. How can i achieve this? CHeers AF
1
vote
1answer
67 views

CAAnimation trouble

I am planning on using CAAnimation to switch views but I am confused on how to actually do this. I know CAAnimation works by using a to and from Value so how would I move a UIView by using toValue and ...
1
vote
1answer
147 views

CABasicAnimation stopping before it started?

I need to fade in my CALayers. Here's my code: for(int i = 0; i < viewArray.count; i++) { CABasicAnimation *fadeIn = [CABasicAnimation animationWithKeyPath:@"opacity"]; ...
1
vote
1answer
184 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
2answers
251 views

How do I successfully animate multiple CALayers simultaneously?

I'm successfully animating a single layer to alter its position along an arbitrary path on my screen. I'm now attempting to replicate this animation multiple times to give the illusion of something ...
1
vote
1answer
560 views

CABasicAnimation - animationDidStop not called

I have been struggling with this problem for weeks now and I cannot find an answer or fix. So basically I am making a CABasicAnimation and the problem is that the animationDidStop delegate method does ...
1
vote
1answer
68 views

Rotating a path for a CAAnimation

I'm animating some stuff using CAAnimation, & it involves making a fairly complex path using CGPathAddCurveToPoint, maybe 10 - 15 of these per path. Is there a way, instead of recalculating every ...
1
vote
1answer
243 views

Trying to slide text with CAAnimation and CATextLayer

I'm trying to slide text in a view with a CATextLayer, but it's clearly not working: The function animationDidStop:finished: gets called one time but with NO as flag value. Code (NSView Subclass): ...
1
vote
1answer
388 views

Can I set layer.transform on an NSView with subviews?

I'd like to have an NSView with subviews (images, text, etc.) and then apply a 3d transform to it using myView.layer.transform = myTransform. After reading the docs I am confused as to whether this ...
1
vote
2answers
219 views

Get size of an expanding circle in a CABasicAnimation at any point in time

I would like to know how I can get the diameter (or radius) of an expanding circle animation at a at any point in time during the animation. I will end up stoping the animation right after I get the ...
1
vote
1answer
204 views

Monotouch animation acceleration

Is it possible to create an animation with increasing speed? Something like accelerated animation. I have some code but cannot find a way how to implement it. Googling also not helpful. ...
1
vote
0answers
174 views

UIScrollView content to track a CAKeyFrameAnimation along a path

In my App I have a full-screen UIScrollView where the content is a UIImageView containing a map image which is about 2000px square (i.e. larger than the UIScrollView). Currently, I plot a path ...
1
vote
1answer
106 views

what does this code mean in objective-c?

[CATransaction withAnimationSpeed:1.0 :^ { if(newMultiplier > 100) fillLayer.backgroundColor = ColRGBA(1, 1, 0, 0.2); else ...
1
vote
2answers
262 views

How to permanently leave a CALayer rotated at its final location?

I am trying to rotate a CALayer to a specific angle however, once the animation is done, the layer jumps back to its original position. How would I rotate the layer properly so that it stays at its ...
1
vote
2answers
522 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
2answers
478 views

How to do a curve/arc animation with CAAnimation?

I have an user interface where an item get deleted, I would like to mimic the "move to folder" effect in iOS mail. The effect where the little letter icon is "thrown" into the folder. Mine will get ...
1
vote
1answer
438 views

Benefits and drawbacks for CAAnimationGroup vs. CAKeyframeAnimation

I'm currently working on some core animation stuff for the iOS and really enjoying myself. This question is regarding the many different ways one can implement an animation. Say you would like to ...
1
vote
1answer
217 views

UIView Animaton Resets to beginning

I'm attempting to run an animation so that the scrollview's contentoffset gets continually scrolling down. However, after each repeat, it will animate from the original position and it is not ...
1
vote
1answer
497 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 ...
1
vote
1answer
215 views

iphone view animation problem

I'm using following code to animate a view. It basically rotates the view by 225 degrees angle. [viewToOpen.layer removeAllAnimations]; viewToOpen.hidden = NO; viewToOpen.userInteractionEnabled = ...
1
vote
1answer
311 views

Animating multiple UIViews at once using CoreAnimation

I'm using a UIImageView as a background-image and placed multiple UIButtons on it. Now I want to move the UIImageView (with all the buttons on it) out of sight with a smooth animation (using ...
1
vote
0answers
533 views

CABasicAnimation not scrolling with rest of View

All, I'm working on reproducing the pulsing Blue circle effect that the map uses to show your own location... I layered a UIView over a MKMapView. The UIView contains the pulsing animation. I ended ...
1
vote
1answer
122 views

Keep object oriented towards a point while it's animated along a path

I'm trying to animate an object along a path...while it's moving it should continue to "point" towards another object (or CGPoint). What should I be looking for in the framework (Cocoa-Touch) to ...
0
votes
2answers
49 views

CAAnimation, snapping back

I'm experimenting with CAAnimation and like many new comers doing the CAAnimation; upon completion, the layer is reverted back to its original state. The question on how to resolve this have asked ...
0
votes
1answer
46 views

How to do animated buttons similar to Path on the iPhone?

In the Path iphone application, on the bottom left corner, there is a + sign button. When pressing it, it performs an animation (the + rotates and a bunch of other buttons emerge outwards). For ...
0
votes
2answers
38 views

How to use CABasicAnimation to move from point to another point?

I'm using CABasicAnimation to perform an animation move object from point to point in my application but after animation finish moving to destination point, it always display at start point. How to ...
0
votes
1answer
14 views

CAAnimation not animating my sequence of images

I'm having trouble with animating with CAAnimation, it doesn't seem to give me any errors but it isn't animating. I'm confused NSMutableArray *animationImages = [NSMutableArray array]; //Adding ...
0
votes
1answer
25 views

iPhone how to translate layer via custom path?

I have made CAlayer that contains an image. What i basically want to do is to translate this image to new location, but not by using simple straight forward path, but i want to move image to that ...
0
votes
1answer
42 views

CAAnimation: Don't reset after animation

I have this code to move a view. CABasicAnimation *theAnimation; theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.translation.x"]; theAnimation.duration=1; ...
0
votes
0answers
12 views

Animating a group of CALayer smoothly between two speeds

I want to animate a group of CALayers quickly onto the screen, but once on the screen they slow down but continue to animate until an event occurs or they animate off the screen. Further, although ...
0
votes
1answer
47 views

CAAnimation: Animation disabled automatically when app goes in background

In my iPhone App, I have put CAAnimation in my code... When my app goes in background with animation on some button and come back button animation that was present I can not see Why? I have put ...
0
votes
1answer
91 views

CAAnimation delegate methods not being called on delegate

The delegate is my view controller. I am setting the delegate via: CABasicAnimation theAnimation; theAnimation.delegate = self; Then I configure the animation and add the animation to the layer, ...
0
votes
2answers
51 views

UIButton Interchange with touch animation in IPhone?

I have 5X5 button in a view. Based on some Condition, i want to interchange them. How can i know which of them is touched, if move is not possible then a message alert will be ...
0
votes
0answers
67 views

animating other CALayer properties during a CATransition…

I am trying to animate the position of a CALayer using an explicit animation, at the same time as I use a CATransition to change its content. The problem is that only the incoming content from the ...
0
votes
1answer
97 views

CAAnimation with performSelector afterDelay

I am messing around with a basic CAAnimation example where Im just trying to get a CALayer to rotate in a subclass of UIView. I start by making a new CALayer with a red background and inserting it ...

1 2