Tagged Questions

Core Animation is Apple's framework for performing hardware-accelerated animation of display elements on the Mac and iOS devices. Useful references include Core Animation Programming Guide Animation Types and Timing Programming Guide Core Animation Cookbook

learn more… | top users | synonyms

68
votes
5answers
120k views

iPhone UIView Animation Best Practice

What is considered best practice for animating view transitions on the iPhone? For example, the ViewTransitions sample project from apple uses code like: CATransition *applicationLoadViewIn = ...
57
votes
9answers
22k views

Cancel a UIView animation?

Is it possible to cancel a UIView animation while it is in progress? Or would I have to drop to the CA level? i.e. I've done something like this (maybe setting an end animation action too): [UIView ...
40
votes
7answers
11k views

Can you animate a height change on a UITableViewCell when selected?

I'm using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular person (thus selecting the cell), the cell ...
34
votes
4answers
18k views

What are block-based animation methods in iPhone OS 4.0?

I am trying to implement a game using the iPhone OS 4.0 (iOS4?) SDK. In the previous versions of the SDK, I've been using the [UIView beginAnimations:context:] and [UIView commitAnimations] to create ...
31
votes
6answers
7k views

UIView animation vs CALayers on iPhone

I'm struggling with conceptualizing animations with a CALayer as opposed to UIView's own animation methods. Throw "Core Animation" into this and, well, maybe someone can articulate these concepts from ...
29
votes
3answers
22k views

How do I apply a perspective transform to a UIView?

I'm looking to perform a perspective transform on a UIView (such as seen in coverflow) Does anyonew know if this is possible? I've investigated using CALayer and have run through all the pragmatic ...
25
votes
2answers
811 views

How to open camera with animation effect?

I want to open camera with animation effect, so that it should appear that camera is opening in the parent screen only. I am using camera overlay screen and on click event of button in parent ...
22
votes
5answers
12k views

How to identify CAAnimation within the animationDidStop delegate?

I had a problem where I had a series of overlapping CATransition / CAAnimation sequences, all of which I needed to perform custom operations when the animations stopped, but I only wanted one delegate ...
21
votes
3answers
12k views

How can I animate the movement of a view or image along a curved path?

I am developing a commerce application. When I add an item to the shopping cart, I want to create an effect where an image of the item follows a curved path and ends up at the cart tab. How can I ...
19
votes
1answer
589 views

Mixing Quartz and OpenGL?

I am trying to find out what actually happens in background when we do this (please see the image) As you can see in image I have added few buttons and have checked Content View from Interface ...
19
votes
4answers
722 views

Faking Subpixel Antialiasing on Text with Core Animation

For anyone working on a project with Core Animation layer-backed views, it's unfortunately obvious that subpixel antialiasing (text smoothing) is disabled for text not rendered on a pre-set opaque ...
16
votes
2answers
5k views

Disabling implicit animations in -[CALayer setNeedsDisplayInRect:]

I've got a layer with some complex drawing code in its -drawInContext: method. I'm trying to minimize the amount of drawing I need to do, so I'm using -setNeedsDisplayInRect: to update just the ...
16
votes
3answers
8k views

How do you explicitly animate a CALayer's backgroundColor?

I'm trying to construct a CABasicAnimation to animate the backgroundColor property of a Core Animation CALayer, but I can't figure out how to properly wrap a CGColorRef value to pass to the animation. ...
15
votes
1answer
331 views

What triggers “Color Copied Images” and “Color Hits Green and Misses Red” in Instruments?

The Instruments User Guide has this to say: Color Copied Images. Puts a cyan overlay over images that were copied by Core Animation. But that doesn't explain why an image got copied. There ...
15
votes
9answers
9k views

iPhone “slide to unlock” animation

Any ideas as to how Apple implemented the "slide to unlock" (also, "slide to power off" is another identical example) animation? I thought about some sort of animating mask - but masking is not ...
14
votes
1answer
2k views

Animating a custom property of CALayer subclass

I have a CALayer subclass, MyLayer, that has a NSInteger property called myInt. I'd really like to animate this property via CABasicAnimation, but it seems CABasicAnimation only works on so-called ...
13
votes
1answer
517 views

How to rotate image with 3D effect?

I want to rotate the .gif image with 3D effect in iPhone application,can anyone help me to provide the sample code or any direction is also appreciated.
13
votes
1answer
237 views

CoreAnimation's threads

Recently, I've been trying to find a way to analyze animations via GDB (for no other good reason than curiosity.) As I understand it, CoreAnimation runs it's animations in a separate thread(s). ...
13
votes
2answers
2k views

How to create custom easing function with Core Animation?

I am animation a CALayer along a CGPath (QuadCurve) quite nicely in iOS. But I'd like to use a more interesting easing function than the few provided by Apple (EaseIn/EaseOut etc). For instance, a ...
12
votes
2answers
1k views

What does yellow tinting represent when using “color misaligned images” on iPhone/iOS

so--i switched on "color misaligned images" to improve drawing performance in our app (Spot). The documentation states: Puts a magenta overlay over images whose source pixels aren't aligned to ...
12
votes
5answers
17k views

How to display a progress indicator overlay/HUD on iPhone?

I want to display a progress indicator in a semi-transparent box that floats over a table view. In other words, when the table contents are being downloaded, I want an "Updating" label to appear over ...
11
votes
5answers
4k views

How to get text in a CATextLayer to be clear

I've made a CALayer with an added CATextLayer and the text comes out blurry. In the docs, they talk about "sub-pixel antialiasing", but that doesn't mean much to me. Anyone have a code snippet that ...
11
votes
3answers
2k views

Recommended Reading for iPhone Core Animation

Can anyone here recommend any good books for getting my head around Core animation? I've been through the Apple docs and while I'm sure it's all there, I haven't been able to grok Core Animation ...
11
votes
3answers
2k views

UIView “suck” animation

I'd like to use the UIView "sucking" transition (view is "sucked" into a point) referenced here: http://iphonedevwiki.net/index.php/UIViewAnimationState#Using_suckEffect The method above, however, ...
11
votes
3answers
2k views

How to implement slurp effect on iPhone?

The iPhone has a private list of effects that Apple uses, such as "genieEffect" and "slurpEffect". I'm wondering how one would go about implementing the slurp effect (this is when you trash a mail ...
10
votes
3answers
4k views

UIView vertical flip animation

I have an iOS UIView with UIViewAnimationTransitionFlipFromRight. I need it to flip vertically though. The page curl transition won't cut it. I assume this will require something custom. Any ideas?
10
votes
3answers
7k views

What causes this error? “CALayer position contains NaN: [240 nan]”

I've seen this happen whenever i rotate a screen that has a UITableView on it. I've found out that it happens inbetween the willRotate and didRotate method calls in UIViewController My co-workers ...
10
votes
1answer
3k views

What's the difference between a CoreAnimation Layer Backed View and a Layer Hosting View?

What is the difference between a Layer Backed View and a Layer Hosting View in Core Animation? What are the steps to setting up each and when is it appropriate to use either type?
9
votes
3answers
960 views

iOS Core Animation - Fold a Layer

Using Core Animation, I would like to fold a UIView (i.e. it's CALayer) on it's center. i.e. I would set the anchor point as (0.5,0.5) & fold the layer. This image that I created in Photoshop ...
9
votes
3answers
2k views

iOS / Core-Animation: Performance tuning

I have my app running on my iPad. but it is performing very badly -- I am getting below 15fps. can anyone help me to optimise? It is basically a wheel (derived from UIView) containing 12 buttons ...
9
votes
3answers
4k views

iOS: Using UIView's 'drawRect:' vs. it's layer's delagate 'drawLayer:inContext:'

I have a class which is a subclass of UIView. I am able to draw stuff inside the view either by implementing the drawRect method, or by implementing drawLayer:inContext: which is a delegate method of ...
9
votes
5answers
812 views

iPhone animation based on input values (touches) not time

For an animation effect perfectly suited to an animation group approach as shown in Brad Larson's answer here, I need the animation to proceed according to inputs. Specifically touch and position of ...
9
votes
2answers
6k views

Animating removeFromSuperview

I'd like to animate the transition from a subview back to the super view. I display the subview using: [UIView beginAnimations:@"curlup" context:nil]; [UIView setAnimationDelegate:self]; [UIView ...
9
votes
6answers
2k views

Shake visual effect on iPhone (NOT shaking the device)

On login failure, I'd prefer to avoid showing an alert, it's too fleeting. Showing the alert and then showing the text somewhere on the login screen seems like duplication. So I'd like for it to ...
9
votes
3answers
13k views

Can I use CGAffineTransformMakeRotation to rotate a view more than 360 degrees?

I'm writing an iPhone app, and I've got an image which I'ld like to have swirl outwards. Currently my code looks like this (wrapped in a beginAnimations/commitAnimations block): scale = ...
9
votes
3answers
12k views

How do I pan the image inside a UIImageView?

I have a UIImageView that is displaying an image that is wider and taller than the UIImageView is. I would like to pan the image within the view using an animation (so that the pan is nice and ...
8
votes
1answer
2k views

What does “Receiver type 'CALayer' for instance message is a forward declaration” mean here?

I'm porting a block of code from an iOS4 project to iOS5 and I'm having some troubles with ARC. The code generates a PDF from a screen capture. PDF Generation Code UIView *captureView; ... ...
8
votes
4answers
439 views

Unwanted scrolling when animating zoomScale in UIScrollView

Executive Summary: At times UIScrollView makes an unwanted change to the value of contentOffset, thus causing the app to display the wrong location in the document being viewed. The unwanted change ...
8
votes
3answers
1k views

the paper folding/unfolding effect in twitter for iPad

Twitter for iPad implements a fancy "pinch to expand paper fold" effect. A short video clip here. http://www.youtube.com/watch?v=B0TuPsNJ-XY Can this be done with CATransform3D without OpenGL? A ...
8
votes
3answers
461 views

How do I know when a CATiledLayer has rendered all visible tiles?

I am working on an application where I render PDF content in a CATiledLayer. I want to trigger one method after the rendering of the tiled layer is complete. Is there any delegate method that will ...
8
votes
6answers
8k views

Reg: modifying layer that is being finalized… [CALayer frame]: message sent to deallocated instance 0xe43c520

I am stuck with a very strange issue. I hope that many of you can provide me input to solve this. My application breaks quite often, but I am not able to get the exact scenario. In Log I get ...
8
votes
2answers
3k views

How do i rotate a CALayer around a diagonal line?

I'm trying to implement a flip animation to be used in board game like iPhone-application. The animation is supposed to look like a game piece that rotates and changes to the color of its back (kind ...
8
votes
4answers
2k views

How do I create a UIImage from a 3d transformed UIImageView layer?

After applying a 3d transform to an UIImageView.layer, I need to save the resulting "view" as a new UIImage... Seemed like a simple task at first :-) but no luck so far, and searching hasn't turned ...
8
votes
2answers
4k views

How to change iphone CATiledLayer fadeDuration?

I am working on an iphone application that displays tiled maps. I am currently using a CATiledLayer in a UIScrollView : MyTiledDelegate *delegate=[[MyTiledDelegate alloc] initWithMapLayer:map]; ...
8
votes
3answers
6k views

Basic keyframe animation (rotation)

I'm trying to create a very simple keyframe animation, whereby a graphic Rotates from one angle to another, through a given midpoint. (The purpose is to be able to animate rotation through an ...
8
votes
1answer
864 views

What is an “misaligned image” in terms of Core Animation in iPhone OS?

Instruments tells that there are "misaligned images" which are animated by core animation. What does that mean? UPDATE: I've seen that in Instruments.app > Core Animation.
8
votes
5answers
8k views

How to capture current view screenshot and reuse in code? (iPhone SDK)

I am attemting to transition from one UIView to another, when the user rotates the device. This, in of itself, is not difficult. However, since I am displaying completely different content after the ...
8
votes
2answers
5k views

CATransform3D vs. CGAffineTransform?

Whats the difference between the two? I'm sure they have pros and cons, and situations they are better performers in. Any resources that compare the two? Is one better for animation (I imagine ...
8
votes
2answers
4k views

How do you move a CALayer instantly (w/o animation)

I'm trying to drag a CALayer in an iPhone app. As soon as I change its position property it tries to animate to the new position and flickers all over the place: layer.position = CGPointMake(x, y) ...
7
votes
1answer
116 views

Export CoreAnimation to video file

I wrote a basic animation framework using Core Animation on iPhone. It has the functionality for pause and resume of animations and also can run animations at specified time. My basic problem is that ...

1 2 3 4 5 32