Tagged Questions
0
votes
1answer
25 views
is it possible to determine the Animation Order [duplicate]
I have three animations. But I want to play these respectively, not at the same time. All of animations are instance of CABasicAnimation. How can i achieve this ?
Thanks.
0
votes
0answers
17 views
Presenting new WebView on swipe
I have created a project for left and right swipe. I have a webview in my view controller which loads different links when I am swiping left or right. I have done little animations using ...
0
votes
1answer
208 views
iOS rotation animation does not happen smoothly in CAAnimationGroup
I have 3 animations running in a group: position, scale and rotation
However my rotation animation does not happen smoothly. It happens abruptly in the beginning, while other animations happen ...
1
vote
1answer
443 views
CAAnimation delegate in CAAnimationGroup
I have grouped 4 CABasicAnimation into CAAnimationGroup. But the problem is that
-(void) animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
is not called for each animation.
...
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 ...
3
votes
1answer
2k views
CABasicAnimation how to get current angle of rotation
I have some problem with CABasicAnimation. It`s similar to that post: CABasicAnimation rotate returns to original position
So, i have uiimageview that rotate in touchMove. In touchEnd invoke method ...
1
vote
1answer
402 views
Synchronising image, text, and positioning with CoreAnimation
I am a bit of a beginner with animations and have been experimenting with CoreAnimation for a couple of days. Feel free to warn me if this question does not make sense, but I'm trying to achieve the ...
0
votes
1answer
305 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;
...
1
vote
2answers
447 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 ...
3
votes
1answer
747 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;
...
0
votes
1answer
1k views
Alternative to using CABasicAnimation callbacks?
CAAnimation does not provide a mechanism for assigning callback functions other than the standard "animationDidStart:"/"animationDidStop:" methods.
I have a custom UIControl that utilizes 2 CALayers ...
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 ...
1
vote
2answers
522 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 ...
0
votes
2answers
555 views
Cross-Fade Between Two UILabels
Say that I have two UILabels (labelOne and labelTwo) and I need to cross-fade between the two labels. What is the best way of achieving this effect?
I have tried using [UIView ...
3
votes
1answer
439 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 ...
0
votes
1answer
768 views
How to move a ball horizontally with CABasicAnimation and stop the ball at the correct place
I'm trying to write a game and I'm a bit stuck with this animation. I have a ball that is animating horizontally in my screen. Here is the code:
CABasicAnimation *horizontalBallAnimation = ...
0
votes
2answers
897 views
CGPath draw a loader
I juste watch this effect :
I would like to reproduce it. Is it simply a CGPath animation? Have you got some indications so implement this beautiful loader view ? Thanks for your tips ;)
