Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
6k views

After rotating a CALayer using CABasicAnimation the layer jumps back to it's unrotated position

I am trying to create a falling coin. The coin image is a CALayer with 2 CABasicAnimations on it - a falling down and a rotation one. When the falling down animation gets to its end, it stays there. ...
5
votes
3answers
2k views

Is there a way to pause a CABasicAnimation?

I have a basic spinning animation of the iPhone. Is there any way that I can "pause" the animation so that the position of the view will be maintained? I guess one way of doing this would be to cause ...
3
votes
1answer
493 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
247 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 ...
2
votes
1answer
270 views

Core Animation is not working with “alpha” value

Before this code, my movie pic alpha is set to 0, CABasicAnimation* fadein= [CABasicAnimation animationWithKeyPath:@"alpha"]; [fadein setToValue:[NSNumber numberWithFloat:1.0]]; [fadein ...
2
votes
1answer
499 views

when to use CABasicAnimation and CAKeyFrameAnimation and CGAffineTransform?

when to use CABasicAnimation and CAKeyFrameAnimation and CGAffineTransform?
2
votes
1answer
359 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
913 views

CABasicAnimation Repeat itself

I have a CABasicAnimation that I perform on multiple layers and all it does is move the UIImageView up 10 pixels and then back down. I want this to continue ad infinitum. When the animation finishes I ...
2
votes
2answers
829 views

Animate CALayer hide

I'm trying to hide a CALayer after a few microseconds and I'm using CABasicAnimation to animate the hide. At the moment I'm trying to use [aLayer setHidden:YES]; CABasicAnimation * hideAnimation = ...
1
vote
2answers
28 views

Xcode image rotation toValue and fromValue

I want to turn an image 190 degrees when pressing a button. That works but when i press the button again the animation needs to start where it last ended, instead of starting from 0. So everytime i ...
1
vote
0answers
47 views

UIScrollview gets slow after CABasicAnimations

as the title suggest, I'm having problems with my UIScrollview, which movements get jerky after I play a CABasicAnimation. The animation flips the UI elements on the screen (up to 10) around while ...
1
vote
1answer
59 views

iOS UIView properties don't animate with CABasicAnimation

I can imagine a far amount of sighs when people see this question popup again. However, I have read through a lot of information both here, in the documentation and via Google and still haven't found ...
1
vote
0answers
38 views

CABasicAnimation change duration/speed during rotation

I am using CABasicAnimation to rotate forever an imageView and I want to change rotation speed during rotation. Can anybody help me with this? Thanks in advance!
1
vote
2answers
306 views

CABasicAnimation resets to initial value after animation completes

I am rotating a CALayer and trying to stop it at its final position after animation is completed. But after animation completes it resets to its initial position. (xcode docs explicitly say that the ...
1
vote
1answer
549 views

Start and stop animation with CABasicAnimation iphone

I want to use animation for image, start on button clicked and stop after 5 seconds.I use this code. -(IBAction) btnClicked{ CABasicAnimation *fullRotation = [CABasicAnimation ...
1
vote
1answer
183 views

Applying speed and number of rotations for CABasicAnimation

I am trying to mimic the rotation of the bottle in Spin the Coke app and pie-chart in the Roambie App. . I wanted to rotate a view as per the touches and swipes of the user on that view. What I ...
1
vote
2answers
200 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
2answers
246 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
1k views

Swipe to Reveal Menu like Tweetie

I've been working on a new app and was really hoping to implement a swipe to reveal more options menu inside my application. I've searched and searched, but it seems no one else has successfully made ...
1
vote
1answer
3k views

CABasicAnimation delegate for animationDidStop?

I am following the example at the bottom of the page to call an animationDidStop function. http://www.informit.com/articles/article.aspx?p=1168314&seqNum=2 The author says "I have an object that ...
1
vote
1answer
328 views

iPhone app spinning an image from the last position

I am trying to create an animated spinning image. This is all fine and I am using CABasicAnimation as described in this thread ...
1
vote
2answers
4k views

Why can't I do any CABasicAnimation or Keyframe animation stuff?

For some reason Xcode tells me that it doesn't find symbols as soon as I use something like kCAFillModeForwards. There must be a library or class that I have to include...but which one? The normal ...
0
votes
0answers
11 views

CABasicAnimation Continue from fromValue

How can i continue a UIImageView transform.translation.x animation after it completed a toValue Process.for example:when press the button#1:from 1 to 55,press button#2 from 55 to 110....and if it at ...
0
votes
1answer
39 views

Rotate and translate UIImageView off and on screen

How can I rotate and translate a UIImageView off one side of the screen, then its coming back from the other side.. Lets say I have a Wheel that I want to rotate and translate from the middle then off ...
0
votes
1answer
27 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
1answer
54 views

How to run a CABasicAnimation in a thread

for(NSInteger i = 0; i < 10; i++) { .... singleThread = [[NSThread alloc] initWithTarget:self selector:@selector(changeLayerBackground) object:nil]; [singleThread start]; } the ...
0
votes
0answers
53 views

UIButton cannot detect touch event correctly after its superview is moved by CABasicAnimation

I would like to make a menu similar to the menu of facebook app (i.e. When the menu button is tapped, the navigation view controller will move a bit to right, and then the menu under it will be ...
0
votes
1answer
66 views

How to get my animation running on viewWillAppear or viewDidAppear

How do I get my animation to run again when viewWillAppear or viewDidAppear get called? This is my animation: bounceAnimation =[CABasicAnimation animationWithKeyPath:@"transform.scale"]; ...
0
votes
4answers
228 views

running CABasicAnimation sequentially

How can I have one CABasicAnimation to run after the other one has finishes? In other words sequentially. I've added the begin time of the second animation, however it seems that the second animation ...
0
votes
0answers
178 views

lineDashPhase CABasicAnimation in iOS 5

In an app I am working on we use a CAShapeLayer to draw a dotted line along a bezier path. To animate this line I use a CABasicAnimation that modifies the lineDashPhase of the CAShapeLayer (the ...
0
votes
0answers
56 views

Weird effect when using sublayerTransform

I'm using CABasicAnimation to do a rotation of a layer around the y-axis. This is the code of my animation: CABasicAnimation *topAnim = [CABasicAnimation animationWithKeyPath:@"transform"]; ...
0
votes
1answer
191 views

CABasicAnimation rotate returns to original position

i'm rotating a CALayer using CABasicAnimation and works fine. The problem is, when I try to rotate the same layer, it returns back to its original position before it will rotate. My expected output is ...
0
votes
0answers
58 views

CABasicAnimation complete then the view can't work

I have some trouble with the CABasicAnimation. I wanna the view move up with animation when the keyboard is apear and move down when the keyboard is disapear, so I do it with CABasicAnimation, but ...
0
votes
0answers
107 views

Route-Me Animation of sprites using CABasicAnimation

I'm using Route-Me and Core Animation to animate some weather graphics over the maps. From the help of this blog http://mysterycoconut.com/blog/2011/01/cag1/. I've gotten the animation to show up ...
0
votes
0answers
95 views

iOS: CABasicAnimation bug powers down iPhone 3GS

I believe I may have found (shock horror) a bug in Core Animation My app has 12 visual buttons arranged in a circle. Each one glows and fades back when it is pressed. I accomplish this by cross ...
0
votes
1answer
209 views

CABasicAnimation unlimited repeat without HUGE_VALF?

I'm trying to perform auto repeat of my image rotation animation with CABasicAnimation. I have tried to search on web how to set such property but was unable to find that. Is it really no such ...
0
votes
1answer
215 views

iPhone UIImageView and CABasicAnimation

I am doing a simple card rotation which works fine, but when I add a custom image background, after the card roation, the image is half chopped off. Any ideas? float scaleValue = M_PI/2; ...
0
votes
2answers
284 views

How to get solution for stoping/resuming CABasicAnimation working?

I'm using CABasicAnimation for rotating UIImageView and I'm unable to resume paused animation. The animation starts in viewDidLoad method: UIImageView *img = [[UIImageView alloc] ...
0
votes
1answer
80 views

animate pan gesture

i have wrote a subclass of UIView, which in drawRect: draws itself. it is actually something like day-long timeline for movie - it draws time axis with ticks and time text labels. it can be zoomed in ...
0
votes
1answer
215 views

how to speed up CABasicAnimation?

I am using the following CABasicAnimation. But, its very slow..is there a way to speed it up ? Thanks. - (void)spinLayer:(CALayer *)inLayer duration:(CFTimeInterval)inDuration ...
0
votes
0answers
40 views

How to develop Voice control type of animation

I want to implement voice control type of control that have some sine waves that continuously animate from one side of the screen to other and change the amplitude at the same time. I am using ...
0
votes
2answers
499 views

UIImageView animated rotation

I would like to rotate an UIImageView clockwise around his center after pressing a button (360 degrees)... It should be an animation... So its getting a steering wheel, and it should rotate by itself ...
0
votes
2answers
99 views

ipad touch animation

Im having trouble animating a wheel using touch. Ive spent some time punching in different numbers values for duration, spin times and animation durations to get a smooth move using on thouchsMove, ...
0
votes
1answer
311 views

CABasicAnimation with 5 images

how to change this code to make the animation like this: image1 --> image2 ---> image3 --->image4 --->image 5 .. then return back to image1 and so on ... the code: UIImage *image1 = [UIImage ...
0
votes
0answers
103 views

Why are my sub-views totally out of position during their animation?

When I run the code, the two views 'jump' left and a little up, execute the appropriate animation (left-and-up shifted), then 'jump' into the right spots. Why? Relevant code: //as documented ...
0
votes
2answers
104 views

Is there a way to set the number of animation steps for CABasicAnimation?

I want to create an animation that interpolates some property for 2 seconds and only 20 frames (presentation layers) have to be generated by the CoreAnimation framework. I know how to provide a ...
0
votes
0answers
414 views

Problem with images animation in xcode

I am trying to achieve animation in xcode through CABasicAnimation class. I need to achieve this 3 things: 1) An array of images should be animated. 2) There should be specific time duration between ...
0
votes
2answers
450 views

Complex CATransition

I am trying to create a CATransition to a UIView. I want to move the UIView to the right, and at the same time (and always on the same point), rotate it. It is better explained by the image. I am ...
0
votes
1answer
404 views

Retrigger CABasicAnimation with NSThread in iOS

I am hacking this Core Animation example: https://github.com/joericioppo/Shape_05 I want to retrigger the animation in response to an NSThread. The NSLogs show up as expected, but the animation ...
0
votes
1answer
275 views

Cocoa iPhone SDK development - touchesBegan method not working if the UIImageView has CABasicAnimation attached

I've created a class derived from UIImageView (class name Customer). Within this Customer class I implemented the method "touchesBegan" . Also, I applied a CABasicAnimation to the layer of the ...

1 2