Tagged Questions
CALayer is a class in Core Animation. The CALayer class is the model class for layer-tree objects. It encapsulates the position, size, and transform of a layer, which defines its coordinate system. It also encapsulates the duration and pacing of a layer and its animations by adopting the CAMediaTiming protocol, which defines a layer’s time space.
109
votes
3answers
32k views
Fast and Lean PDF Viewer for iPhone / iPad / iOs - tips and hints?
There has been many Questions recently about drawing PDF's.
Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a ...
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 ...
20
votes
4answers
8k views
Rounded UIView using CALayers - only some corners - How?
In my application - there are four buttons named as follows.
Top - left
Bottom - left
Top - right
Bottom - right
Above this buttons there is an image view / or we can use also UIView.
Now, ...
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 ...
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 ...
12
votes
3answers
916 views
Rounded UIScrollView Peformance
This runs great on iPhone 4 and 3GS:
scrollView.layer.cornerRadius = 11;
scrollView.layer.masksToBounds = YES;
But on iPhone 3G and iPod touch 2nd gen, it makes scrolling really jerky. I know there ...
12
votes
7answers
4k views
sent to deallocated instance
Whenever I push a view controller onto my stack, then pop it off, I get this error:
*** -[CALayer retainCount]: message sent to deallocated instance <memory address>
It seems to happen right ...
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 ...
10
votes
4answers
2k views
CALayer autoresizing on iPhone/iPad: How?
I'm trying to create a UIView subclass ("GradientView") that will fill itself with a gradient of various colors. I've implemented it by adding a CAGradientLayer as a sub-layer of UIView's layer.
It ...
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 ...
9
votes
4answers
6k views
Inner shadow effect on UIView layer?
I have the following CALayer:
CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.frame = CGRectMake(8, 57, 296, 30);
gradient.cornerRadius = 3.0f;
gradient.colors = [NSArray ...
9
votes
4answers
4k views
Using CALayer Delegate
I have a UIView whose layers will have sublayers. I'd like to assign delegates for each of those sublayers, so the delegate method can tell the layer what to draw. My question is:
What should I ...
8
votes
1answer
3k 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
3answers
1k views
Customize the Airplay button's appearance
I use a standard gradient overlay (done in photoshop) to make buttons look nicer in my app. I added an Airplay button, but the aesthetics are not matching.
I really want to put a gradient layer ...
8
votes
1answer
1k views
What's the difference and compatibility of CGLayer and CALayer?
I'm confusing CGLayer and CALayer. They look similar but why separated double implementations are there? What's the difference and compatibility of CGLayer and CALayer?
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 ...
7
votes
3answers
287 views
Animate a CALayer's bounds w/redraws
I am wondering how one might animate a CALayer's bounds so, on each bounds change, the layer calls drawInContext:. I've tried the 2 following methods on my CALayer subclass:
Setting ...
7
votes
2answers
237 views
Bad text rendering with Core Animation
First of all, I know this topic has been brought up several times before but I'm posting this question because none of the "solutions" I've used in the past have worked in this specific case. I'm ...
7
votes
1answer
230 views
Incrementally adding to a UIView
In my iOS app, I've created a view that renders a path drawn with a finger using UIBezierPath in real time while drawing. Unfortunately, I'm having performance problems as the path gets long (several ...
7
votes
1answer
914 views
Mix video with static image in CALayer using AVVideoCompositionCoreAnimationTool
I am trying to mix video, coming from the camera with a static image (watermarking).
I have checked around questions/answers here and some examples, including WWDC AVEditDemo from Apple and ended ...
7
votes
2answers
4k views
Core Animation CALayer mask animation performance
We wanted to use a UITabBar in our iPhone app, but with one exception: we have a "sync" button which I wanted to rotate while the sync operation is happening.
Unfortunately this meant having to ...
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. ...
6
votes
1answer
1k views
Animating CALayer's shadowPath property
I am aware that a CALayer's shadowPath is only animatable using explicit animations, however I still cannot get this to work. I suspect that I am not passing the toValue properly - as I understand ...
6
votes
4answers
438 views
The best way to implement drawing features like Keynote
I'm trying to make a little iPad tool's for drawing simple geometrical objects (rect, rounded rect, ellipse, star, ...).
My goal is to make something very close to Keynote (drawing feature), i.e. let ...
6
votes
3answers
3k views
CALayers didn't get resized on its UIView's bounds change. Why?
I have a UIView which has about 8 different CALayer sublayers added to its layer.
If I modify the view's bounds (animated), then the view itself gets shrinked (I checked it with a backgroundColor), ...
6
votes
1answer
5k views
Masking a CALayer - iPhone
I'm creating a custom on / off toggle switch for the iPhone (similar to the standard switch) and i'm at the point where I'm setting the mask of the slider, but calling [[myView layer] ...
6
votes
1answer
4k views
How to get touch event on a CALayer?
I'm new to the iPhone SDK. Right now I'm programming with CALayers which I really like a lot – not as expensive as UIViews, and a lot less code than OpenGL ES sprites.
I have this question: is it ...
5
votes
1answer
151 views
How to create reverse masks on CALayers
I'll make this as simple as possible
How do I create reverse masks on CALayers in iOS?
I have a red view and an image that is used to mask the red view.
I use the view's CALayer's mask property to ...
5
votes
1answer
108 views
CAOpenGLLayer displaying remote Context
I have a sub-classed CAOpenGLLayer class which overrides drawInCGLContext there I draw a rectangle with OpenGL. The CAOpenGLLayer is added to a CALayer and shown.
So when I would like to draw ...
5
votes
2answers
241 views
iOS / Core-Animation: 12 overlapping cards in a circle
I am trying to arrange 12 objects in the circle so that each overlaps its anticlockwise neighbour.
Something like this:
Problem is that if I just rely on the drawing order, one of them is always ...
5
votes
1answer
242 views
Crash in actionForLayer:forKey:
I have a cryptic EXC_BAD_ACCESS when changing some UILabel's frame. The crash is random, usually I have to repeat the conditions for several minutes.
Enabling NSZombies, as well as other memory debug ...
5
votes
1answer
2k views
Relationship between UIVIew and CALayer regarding background image on iOS
Trying to understand the relationship between UIView and CALayer. I read Apple documentation but it doesn't describe in detail the relationship between the two.
Why is it that when I add the ...
5
votes
2answers
511 views
What's the best approach to draw lines between views?
Background: I have a custom scrollview (subclassed) that has uiimageviews on it that are draggable, based on the drags I need to draw some lines dynamically in a subview of the uiscrollview. (Note I ...
5
votes
3answers
337 views
CATransformLayer doesn't support implicit animation?
Here's my animation code:
CGFloat zDistance = 850;
CGFloat scaleFactor = BACK_COVER_WIDTH / self.transformLayer.bounds.size.width;
CATransform3D rotation = CATransform3DMakeRotation(M_PI, 0.0, 1.0, ...
5
votes
0answers
587 views
CALayer scale not affected by frame? [closed]
I'm adding a sublayer with contents of a CGImage. I create it's frame, which i thought included it's bounds and position. I also set the layers contentsGravity, so the image would resize properly in ...
5
votes
2answers
982 views
Create a UIImage by rendering UIWebView on a background thread - iPhone
Does someone know of a way, or has a creative idea as to how to obtain an UIImage that is rendered from a UIWebView? The catch is, that is must be on a background thread.
I'll elaborate:
I'm trying ...
5
votes
1answer
1k views
Observing animated property changes in a CALayer
I have a CABasicAnimation that animating a property of a CALayer e.g. bounds.origin. I want to be able to observe the property changing over time, but haven't really found a method that works 100%.
...
5
votes
2answers
8k views
Drawing woes with CALayer
First of all, im finding the iPhone online docs to be not-so-very thoroughly clear when it comes to the various ways of rendering a layer. I get the jist of it, but im not clear when to use which ...
4
votes
1answer
356 views
Blending CAGradientLayer used as shadow
I have a CAGradientLayer I'm using as a shadow. It fades from 60% opacity to clear, left to right. On the edge of the gradient, it appears to be blending with the layer beneath it and lightening that ...
4
votes
3answers
205 views
CoreAnimation CALayer and CATextLayer combination
I'am just playing around with CA lately. Now I am kind of stuck.
This is the thing I want to animate:
As for now I already got the circle animation working. I subclassed CALayer to make the ...
4
votes
2answers
508 views
CALayer with rotation animation
I have masked an image like this:
UIView *maskImage; maskImage = [[UIView alloc] init];
maskImage.backgroundColor = UIColorFromRGB(FTRMaskColor);
maskImage.frame = newFrame;
CALayer *theLayer = ...
4
votes
1answer
270 views
Is there an issue with updating a CALayer position while the layer is paused?
Is there an issue with reading the presentation position while it's paused?
I'm trying to pause and resume a CALayer. Once the CALayer is paused, I want to update the layer's position with it's ...
4
votes
1answer
500 views
Common class/protocol for UIView/CALayer - software design issues
I have a very simple question regarding some software design decisions using the iOS SDK.
Suppose I have a class that manages the presentation of view objects in my application (UIManager). This ...
4
votes
1answer
507 views
Get uiImage from view's layers?
I have a view which has sublayers whose contents are images.
I was hoping to get the view's image by myView.image but apparently the view doesn't have image just layers.
How do I create a UIImage ...
4
votes
4answers
2k views
CALayerInvalidGeometry exception during HTML5 video play (iOS 4.2 Problem)
After updating to the iOS 4.2 SDK, i receive the following exception in my app:
Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [nan 22]'
...
4
votes
0answers
443 views
Get UIImage from the CALayer attached to AVPlayer (extract frame from video playing)
I play a video with AVPlayer. It works ok.
Now I want to get a UIImage from the video playing (when I push a button for the moment).
Attached to my AVPlayer there is a CALayer that is used to ...
4
votes
1answer
2k views
CALayer and Off-Screen Rendering
I have a Paging UIScrollView with a contentSize large enough to hold a number of small UIScrollViews for zooming, The viewForZoomingInScrollView is a viewController that holds a CALayer for drawing a ...
4
votes
3answers
3k views
Can't set cornerRadius AND shadow on layer that has an image view stretched to its bounds?
This is stumping me. I have a UIView (call it "parent"). The bottommost subview of that view is a UIImageView (call it "child"), whose frame occupies the entirety of the "parent" bounds.
I want to ...
4
votes
1answer
817 views
Clipping a CALayer to arbitrary path
Is it possible to clip a CALayer to an arbitrary path? I am aware that I can clip to the superlayer's bounds, but in this case I need to be far more prescriptive.
TIA, Adam
4
votes
2answers
2k views
How to tile the contents of a CALayer?
I would like to tile a CGImage across a CALayer, but it seems to only want to stretch it.
The example code:
self.background = [UIImage imageNamed: @"Background.png"];
[documentDisplay.layer ...