Tagged Questions
0
votes
1answer
31 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.
1
vote
0answers
127 views
What is the maximum duration value (CFTimeInterval) for a CAAnimationGroup?
I have two rotation animations in my CAAnimationGroup, one that starts from zero and another that repeats and autoreverses from that state:
- (void)addWobbleAnimationToView:(UIView *)view ...
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
1answer
134 views
Animate line segment in iOS
In iOS, I would like to create a line segment object and animate its start and end points (I can do this in Microsoft's WPF).
Currently, I create a line segment object as a tiny CALayer that I ...
1
vote
1answer
119 views
Image Changing CALayer Core Animation
What is the best way of changing the image of my "Sprite" before/during/after an animation?
I display the image:
CALayer *am = [[CALayer alloc] init];
am.contents = img;
am.bounds = CGRectMake(150, ...
1
vote
1answer
77 views
Animation Snaps back when the UIImage is changed
I have an UIImageView that runs across the screen when a button is pressed and held. When the button is pressed is changes the UIImage of the UIImageView and when the button is let go I change it to ...
0
votes
3answers
355 views
Move UIImage across screen using core animation
DO NOT POST ANSWERS ABOUT UIVIEW ANIMATIONS I understand UIView, I am learning core-animation. Im trying to get an image to move 50 units to the right but I am having many issues. First when the ...
0
votes
1answer
47 views
UIImage view resets after animation is called
Im new to core animation. Every time I call the animation my image moves from its location to the top left of the screen, moves, then goes back to the original location. How do I make the image move ...
0
votes
1answer
52 views
Red Box Moving in Place of UIImage View in Core Animation
My first Core Animation is just an image moving from point a to b. For some reason when the animation is called a red box appears and moves in place of my image while it just sits there.
Here is my ...
0
votes
1answer
145 views
Cannot get CALayer to display in UIView
I have a simple, single-view app and for some reason I cannot get a CALayer to display in the app's UIView. The background color of the view is correct but the image in the CALayer is not visible. ...
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 ...
2
votes
3answers
745 views
animating the length of circular arrow mask in Core Animation
I've created a circular animation using CAShapeLayer and masking.
Here is my code:
- (void) maskAnimation{
animationCompletionBlock theBlock;
imageView.hidden = FALSE;//Show the image view
...
1
vote
1answer
745 views
CATransition Push transition replacing content early
I have a simple animation setup in a Mac App where a page control swaps out some views. I am very close to getting the paging-like animation I want, but there is a slight problem. The paging works and ...
6
votes
3answers
2k 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 ...
0
votes
1answer
415 views
CAAnimationGroup not working
I have a problem with CAAnimationGroup. I have a view called animeView and I want to apply a 3D rotation around Y axis and a scaling transform at the same time. The rotation and scaling animations ...
4
votes
1answer
3k views
How can I create an CABasicAnimation for multiple properties?
I have this code to animate a CALayer element.
CABasicAnimation *makeBiggerAnim=[CABasicAnimation animationWithKeyPath:@"radius"];
makeBiggerAnim.duration=0.2;
makeBiggerAnim.fromValue=[NSNumber ...
1
vote
1answer
111 views
how come I replace a CALayer's position implicit animation and it still kicks in just before my own?
I'm doing something like this:
CABasicAnimation* translateA = [CABasicAnimation animation];
translateA.timingFunction = [CAMediaTimingFunction ...
0
votes
1answer
544 views
animationDidStop:finished: not called
I'm trying to replace a view with another one using a sliding animation from top. I kind of followed the guide posted here in http://gentlebytes.com/2011/09/auto-layout-in-lion/ but without the ...
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 ...
0
votes
1answer
163 views
Animating two views with different start times and same finish time
I am trying to find a way to animate two views in this way: they will start animating at different times but end their animations at the same time.
Think of a horse race where one horse starts after ...
1
vote
1answer
420 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
195 views
CATransition not animating from method inside UIView subclass
I have a method inside my UIView subclass which adds a to CATransition its layer:
- (void)animateWithDefaultTransition:(NSString *)transition duration:(CFTimeInterval)duration
{
CATransition ...
0
votes
1answer
902 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, ...
4
votes
1answer
404 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 ...
1
vote
1answer
172 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 ...
0
votes
2answers
109 views
How can I hide navigation bar through CAAnimation?
Actually For show/hide I am using UIView Animation.
And Simple methods like animated : YES/NO.
But it does not give me smooth response..
Please give me suggestions...
BOOL navBarState = ...
1
vote
1answer
813 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"];
...
0
votes
2answers
729 views
Setting repeatCount to 1e100f gives a warning
From Apple Documentation:
Setting the repeatCount to 1e100f will cause the animation to repeat until it is removed from the layer.
Here's my code:
CABasicAnimation *flicker = [CABasicAnimation ...
3
votes
2answers
887 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 ...
4
votes
3answers
852 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
3answers
928 views
UIButton not interacting during animation
I'm trying to animate a UIButton. But during it's animation, there is no interaction with the UIButton. Expected behavior is to be able to click on the button while it's moving. Here's the code ...
1
vote
1answer
503 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):
...
0
votes
1answer
500 views
A problem when try to zoom in & out of UIButton with CAAnimationGroup
no have animation , cause i do it incorrect ?
-(void)swipeanimateDidStop {
for (UIView *subview in self.swipingCell.backView.subviews){
NSLog(@"%@",subview);
// subview is ...
1
vote
2answers
458 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 ...
6
votes
3answers
3k 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 = ...
0
votes
2answers
565 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 ...
1
vote
1answer
702 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 ...
3
votes
1answer
944 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
1answer
734 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 ...
0
votes
1answer
994 views
Issue with CAAnimation and CALayer Transforms
I have a CALayer that I want to animate across the screen. I have created two methods: one slide open the layer and one to slide close. These both work by assigning a property to the layer's ...