CALayer is a Core Animation class in the Quartz Core framework. It encapsulates the position, size, and transform of a layer, which defines its coordinate system.
1
vote
1answer
28 views
Context errors in CABasicAnimation animation
I have the stroke animation:
- (void)drawBezierAnimate:(BOOL)animate
{
UIColor* color = [UIColor colorWithRed: 1 green: 0.562 blue: 0.343 alpha: 1];
UIBezierPath *bezierPath = [self bezierPath];
...
0
votes
2answers
10 views
NSView invisible unless I override drawRect, and then it gets clipped even if setMasksToBounds is NO on superview's layer
Trying to add a NSView to an existing NSView, but I'm failing miserably for some strange reason. I'm doing this:
_resizeView = [[NSView alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)];
...
0
votes
3answers
26 views
UIWebView corners not rounded
I am using a UIWebView for displaying some formatted text. I am using the line:
sliderTextWebview.layer.cornerRadius = 10;
to round the corners of the UIWebview. The corners are not rounded but if ...
0
votes
1answer
25 views
Multiple CALayer animations Executed at the Same time
I am trying to make an animation where two layers move to the side, scale down, and rotate a little bit in 3D, all at the same time (then move back with the layer previously at the bottom not on top). ...
0
votes
0answers
22 views
Animating CALayer creates unwanted flicker glitch due to hardware constraints; need alternate ways to animate my view
I'm trying to make an app that animates the mouth on a person's face, much like jibjab.com, (example can be found here). In order to do this, I had a layer of all black as the bottom most layer, ...
0
votes
0answers
9 views
Problems with CALayer not properly overlaying parent UIImageView's image property
StackOverflow'ers!
I have been trying to get Core Animation integration working in my application and find myself screaming in frustration at the problems that have arisen...
I am trying to:
Make a ...
0
votes
2answers
20 views
Force redraw of a UIView or CALayer on scale/transform
Say you have a UIView or a CALayer that does its own (vector) drawing, and you want it to remain crisp at any size, even when scaling the view or layer. How can I make it redraw when it is scaled with ...
0
votes
2answers
31 views
Ask CATextLayer on top of mask layer
In my app, I have added a mask to a UIImageView, and set it at half opacity. Also, there is a CAAnimation running on that CALayer.
Now, I want to add a CATextLayer on top of it all, and it must NOT ...
0
votes
2answers
36 views
Draw graph on uiview with animation
Hello Everyone,
I would like to create a similar view like in the attached image. I can do this easily with the help of UITableView but I also want to draw a graph above of this tableView. I am ...
0
votes
2answers
31 views
CALayer CABasicAnimation chaining
I'm animating a CALayer's opacity-property with the following code:
Creating the animation in a method:
+ (CABasicAnimation *)fadeIn:(float)begin duration:(float)duration remove:(BOOL)remove{
...
0
votes
0answers
16 views
CALyer memory leak
I found my program has a memory leak problem in the detection of memory, the code is as follows
- (CALayer *)layerWithFrame:(CGRect)aFrame
contentGravity:(NSString *)aContentGravity
...
0
votes
2answers
27 views
Animate in curve in layer
I have been trying to do this for several days. I have an array of CGPoints that can form either a curve or straight line(freehand). I am using CALayer and want to animate it in a smoothly(like a ...
0
votes
1answer
133 views
+50
CAAnimation with CALayers occasionally creates flickered animation (video included)
My app takes a still photo and animates the mouth region to emulate talking. However, about 1/4 of the time, some of the hidden calayers will flash continuously throughout the animation.
Here is what ...
1
vote
1answer
26 views
Non-blocking UIView animated scaling
I'd like to animate scaling a UIView and all of its content in a non blocking way. Currently I do this ...
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.1];
...
-1
votes
0answers
36 views
Objective c - transform a view from lying to standing [closed]
I want to transform a view from a plane that is parallel to the ground to a plane that is perpendicular to the ground.
Any ideas?
2
votes
2answers
60 views
CALayer with transparent hole in it
I have a simple view (left side of the picture) and i need to create some kind of overlay (right side of the picture) to this view. This overlay should have some opacity, so the view bellow it is ...
0
votes
1answer
17 views
CALayer containsPoint with mask not working
I have a UIView that have a CALayer mask:
// Getting the right mask image
UIImage *myimage = [UIImage imageNamed:[NSString stringWithFormat:@"img%d", imageIndex]];
// Scaling image to fit UIView
...
0
votes
1answer
57 views
Using circular progress bar with masked image?
I am working on a circular progress bar for custom game center achievements view and I have kind of "hit the wall". I am struggling with this for over two hours and still cannot get it to work.
The ...
-1
votes
0answers
18 views
how to remove flipview layer [closed]
I have a turnover effect use flip view class。 turnover effect I have finished。
In flipview I have many main layers .one main layer I have two sublayer.one sublayer I have a card image. But when I ...
0
votes
1answer
41 views
How to draw inside a layer and add to context only after [viewLayer addSublayer:newLayer]?
The question
How do you create a separate context for your layer and incorporate that context into super layer?
Why I want to do this
I want abstract the drawing of a view layers into separate ...
0
votes
1answer
66 views
iPhone iOS how to draw text on a CALayer using drawLayer:inContext:?
I have a simple scrolling graph which uses this method to draw itself. I'm looking for a way to add text label to this graph, but cannot find how to do this.
I tried:
[@"test" drawInRect: ...
0
votes
2answers
44 views
Why is my image layer rotating around the edge of the image and not the center?
I'm trying to rotate an image around the center of a view using sliders, one for x, y and Z planes. I would like the image to rotate inside it's framed boundaries (700X700) but for some reason it ...
0
votes
1answer
11 views
CALayer Troubles when loading an image from a UIImagePicker
I have a UIViewController with a UIImageView (imageView), and I'm defining several layers that will be nested in the imageview as follows in viewDidLoad:
//container layer - the very top layer
...
0
votes
1answer
25 views
Scaling webview animation
I have webview in a viewcontroller of size 50x50 (width and height). And I have button to scale/stretch the width and height of the webview. So whenever the button is pressed, I want to increase the ...
0
votes
1answer
27 views
Dynamic Accessibility Label for CALayer
How do I make a CALayer accessible? Specifically, I want the layer to be able to change its label on the fly, since it can change at any time. The official documentation's sample code does not really ...
-3
votes
0answers
65 views
CALayer invalid geometry, CALayer position contains NaN [nan 44.5]
When I run my iOS native application using simulator ,it is giving me anException like
'CALayer Invalid Geometry ,CALayer Position conteains NaN[nan 44.5]'.But the application is running fine when it ...
1
vote
0answers
18 views
How to deform a layer?
I'm trying to deform a rectangle in this way:
From this:
http://cl.ly/Okxn
To this:
http://cl.ly/OkmT
I tried to use a CALayer, but I haven't found a way to deform it...
I did some experiments ...
-1
votes
1answer
71 views
iOS: CALayer, complex effects [closed]
I'm trying to create a layer like this:
But I'm not able to create this effect... Can someone help me? I couldn't find a tutorial with a similar result.
1
vote
1answer
21 views
Getting the “LightTable” sample code working
I'd like to get the "LightTable" sample code from Apple's website going (https://developer.apple.com/library/mac/#samplecode/LightTable/Introduction/Intro.html). It all compiles fine but dragging an ...
0
votes
0answers
72 views
Move and resize a UIView in a UIScrollView with UIPanGestureRecognizer
I have a UIScrollView. In the UIScrollView I have an UIView and in it I have many UIViews. Every UIView has to go to resize by dragging in the blue dots and been move in the UIScrollView by just ...
0
votes
1answer
18 views
Why is my hitTest in UIView not identifying CALayer touched
I have a UIView in which 2 CALayers are added [self.layer addSublayer:subLayerA]; //... giving the following view hierarchy:
UIView subclass
- backing layer (provided by UIView)
- subLayerA
...
0
votes
1answer
33 views
what determines the initial value of CALayer.position?
I have a simple test app that has one view, one view controller, and all of this is instantiated via a standard storyboard. When I run my app and pause on a breakpoint in my view controller I can see ...
0
votes
0answers
28 views
Selectively clipping/layering subviews in a “UITextField” replacement?
I'm making a Core-Text replacement for UITextField. I'd like to replicate most of it's features, but can't figure out how to correctly clip all the subviews.
I'm deriving from UIScrollView so I need ...
2
votes
0answers
66 views
CALayer drawInContext can't draw 1px lines on retina displays
I want to draw double colored line with 1px lines of 2 different colors.
I have a lot of code so I'm putting it after trying to explain.
If I use uiview drawRect method it works fine when I switch ...
1
vote
1answer
26 views
For my subclass of RMMarker in Route-Me, how do I disable user interaction?
I have a subclass of RMMarker which I want don't want receiving touches. It receives touches that markers behind need to receive. RMMarkers aren't UIViews, they're based on CALayers and the hit ...
-1
votes
1answer
42 views
How do I make a layer maintain the final value of a CABasicAnimation
Consider the following animation:
CABasicAnimation *pathAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
pathAnimation.duration = 1.0;
pathAnimation.timingFunction = ...
0
votes
0answers
17 views
UIView and CALayer Animations not synchronised
I've been working on an UI, and I mix UIViews for buttons and the like, and CALayers to draw backgrounds or other eye candy. I try an animate them with the following code:
[CATransaction begin];
...
0
votes
2answers
77 views
Can't click on UIButton (that appears programatically) after animation gets done
Just had a small question. I'm trying to make a UIButton appear programatically, which I have to animate. But once the animation gets done, I can't click the button for some reason.
I have a CALayer ...
0
votes
1answer
40 views
CALayer rotate by direction
I'm trying to rotate a CALayer, first of all I rotate it by -30 degrees, so it turns left.
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
self.transform = ...
0
votes
1answer
31 views
CALayer's backgroundFilters doesn nothing on UIView
I am trying to add a CIFilter to the backgroundFilters property of a CALayer to let this draw in a UIView. Therefore I subclassed CALayer and in the init execute the following:
CIFilter* blur = ...
-1
votes
1answer
64 views
How does Mailbox get the effect of their icon and an image underneath it? [closed]
Apparently there is an image underneath another image, so is the super image (the one with the mailbox icon) just designed to be transparent in Photoshop, or Gimp, etc, or they used some other cool ...
0
votes
1answer
77 views
Make area around masked region transparent with CALayers?
I'm trying to crop an image to an irregular shape, but I need to make the area that was removed transparent.
Inside subclass of UIView
CALayer *myLayer = [CALayer layer];
CAShapeLayer ...
0
votes
2answers
42 views
Adding a UILabel's layer to another layer (Separate UIView)
I'm trying to understand why I can't add a UILabel's layer as a sublayer to another layer in a separate UIView object.
- (void)addNumber:(NSInteger)number toLayer:(CALayer *)layer {
UILabel ...
0
votes
0answers
48 views
UIKeyboard crashes when input Chinese in iOS 6.1
I have a UITextField accept user input to search the content on server side.
Everything goes well when just input English. And when I try to input Chinese, the application crashed (but not every ...
1
vote
1answer
60 views
How to change the color of CALayer during animation?
I want the layer to start from green, then slowly to yellow, orange and finally red. How do I do this?
CAShapeLayer *layer = [CAShapeLayer layer];
[layer setStrokeColor:[UIColor greenColor].CGColor];
...
0
votes
1answer
50 views
Custom border for UIView using CALayer and autolayout
I have to draw a custom border for a UIView.
I already have code to do that but it was written before we started using autolayout.
The code basically adds a sublayer of width/height=1.0f
...
0
votes
1answer
59 views
Is it possible to combine/layer images using UIImageView and still keep their transparency?
I'm trying to combine some greyscale images with different alphas to create a layered affect. I'm loading images into a UIImageView and on screen it looks as expected. However, when I save the ...
0
votes
1answer
29 views
How can I draw something on top of AVPlayer video in Cocoa?
In my app I want to be able to draw rectangles on top of the playing video. I already implemented the drawing canvas which is a NSView, and I have a player implemented as well.
However, when I place ...
0
votes
1answer
61 views
iOS Button Animation Like Mail App
In the iOS mail app if you go to inbox and swipe over an item the archive button gets revealed from right to left (and the way around when is disappears). I'm trying to get this behaviour in my app, ...
0
votes
0answers
66 views
Bring the NSView to front in Cocoa for OSX
In my app I have two NSViews layered on top of each other. Both of them were created in the Nib, not programmatically. View1 has the following setup:
[view1 setWantsLayer:YES];
[[[self view1] layer] ...





