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 (1)

0
votes
0answers
9 views

How to transition smoothly between CABasicAnimations?

I would like to imitate the feel of a spinning disk (like a vinyl record) in Core Animation. The disk is implemented using a CALayer. Here is what I would like to have: Dampening of the rotation of ...
0
votes
0answers
6 views

How to use compositing filters with CALayer?

I want to draw a layer using a multiply filter, and got this code from other similar questions: CALayer *layer = [[CALayer alloc] init]; layer.frame = CGRectMake(50, 50, 200, 80); ...
0
votes
2answers
36 views

Apply a perspective transform without rotating

I have been trying to perform a perspective transform on a UIView. I have been working from this example. However, that example applies a rotation on the view as well as a perspective change. Is ...
0
votes
1answer
35 views

Is there a way to do 3D transforms with keypoints?

I've created a 3D cube view transition that does the following: Creates a layer container. Adds the current view in 2D space. Adds the next view to the right and rotated 90 degrees (like in a ...
0
votes
0answers
26 views

Core Animation + CADisplayLink (timer) animation

As i'd like to avoid using Cocos2D for my game, i came up with the following: The Box2D physics engine and a CALayer structure containing mainly sprites and shape layers. As Box2D features an ...
1
vote
0answers
74 views
+400

Animation Duration for UICollectionView selectItemAtIndexPath:animated:scrollPosition:

I have tried to set the duration (with the normal methods that I would try) for setting the animation duration for UICollectionView's selectItemAtIndexPath:animated:scrollPosition: method (or the ...
1
vote
0answers
28 views

Changing duration of UIviewController transition

I am using this code to change between one view controller to another: UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle: nil]; UIViewController *lvc = ...
2
votes
2answers
60 views

How to animate UITableView header view

I need to animate the insertion of a tableview header view. I want that the table rows to slide down while the header view expands its frame. So far the best result I got is by using the following ...
0
votes
1answer
24 views

Change direction in stroke animation

I want to revert the direction of a path drawing. So I changed fromValue and toValue propeties, but now full path is visible at the start of animation and it begins to disappear. I have the path: ...
1
vote
1answer
20 views

Animate new data insertion in core-plot (iOS)

I am trying to animate the "drawing" of new data using a CPTScatterPlot objects. I am now looking at the RealTime example that you can find here in the examples subdirectory. It is one of the example ...
0
votes
0answers
32 views

Properties of CALayer in layer-backed view won't display, and variable losing value in cocoa app

I have a collection view containing objects (cards) bound to a core data entity. Each of those cards has a type attribute that gets set from user input when the card is added. The class of the ...
2
votes
3answers
159 views

Reproducing the Tumblr Tagging Effect in iOS

I'm completely stumped as to how to do it. First, the view looks something like this: Next, you tap in the tags bar (I assume it is a modified UITextField with a placeholder image) and the tags bar ...
0
votes
2answers
39 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
0answers
38 views

CABasicAnimation - transform scale keep in center

Trying to animatie an ellipse masked on a UIView to be scale transformed remaining in the center position. I have found CALayer - CABasicAnimation not scaling around center/anchorPoint, and followed ...
0
votes
1answer
36 views

Add a shadow to CAShapeLayer, so that the inside remains transparent

I want to add a glow effect to a path, like the blue glow around (OS X) interface elements when they have focus. I used a CAShapeLayer with a (rectangular) path: self.borderLayer = [CAShapeLayer ...
0
votes
1answer
67 views

Sparkle effect iOS

I want to create sparkle effect over an image as shown in the video Sparkle Effect the only way I could think of doing it animating each particle separately using core animation, but that would be ...
-2
votes
3answers
47 views

animation continues after elapsing animationDuration

I want to make an animation within a specific duration. My code is below: - (void)animate{ NSArray *myImages = [[NSArray alloc] initWithObjects: [UIImage imageNamed:@"01.png"], ...
0
votes
1answer
61 views

iOS 6 animate size of view and have constraints move other views

I'm playing with iOS 6 autolayout for the first time and I'm trying to figure out how to mix autolayout and animation. I've got container view, ViewA, which is a certain height. I've got a ...
0
votes
2answers
32 views

don't have access to synthesize property in animationDidStop method

I have property: @property NSMutableArray *fieldsArray; @synthesize fieldsArray; and in method I try to get something from this array: - (void)animationDidStop:(CAAnimation *)theAnimation ...
1
vote
1answer
24 views

How to change strokeColor by custom gradient

I want to animate strokeColor of CAShapeLayer, but in CABasicAnimation I have two value (from and to). Is it only two color support while animation is fire? For example, on start I have strokeColor = ...
0
votes
3answers
56 views

CATextLayer gets rasterized too early and it is blurred

I have some troubles with CATextLayer, that could be due to me, but I didn't find any help on this topic. I am on OS X (on iOS it should be the same). I create a CATextLayer layers with scale factor ...
0
votes
5answers
49 views

Rotation to a specific angle not working

I have a image of a cartoon face to rotate it just like as shaking head a little bit from left to right (as we do when hearing music) for a specific duration of time like 5-7 seconds. So, i am doing ...
1
vote
0answers
32 views

Minimize off-screen rendering when using CAShapeLayer

Pretty standard setup: VC view has top corners rounded via CAShapeLayer with UIBezierPath, like this: UIBezierPath *cornerPath = [UIBezierPath bezierPathWithRoundedRect:self.view.bounds ...
-1
votes
1answer
39 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 = ...
2
votes
2answers
32 views

NSLayoutConstraint animation on MonoMac

I'm working in MonoMac and am attempting to animate the width and height constraint for a control dynamically on a button click. After reading the following pages, I'm assuming that I have to use the ...
0
votes
1answer
21 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.
0
votes
2answers
75 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
0answers
37 views

How to implement the ADLivelyTableView class in a project that uses ARC

I have gone through the ADLivelyTableView demo project but have not been able to import the ADLivelyTableView h and m files into my project successfully. It appears that the main issue is to do with ...
0
votes
1answer
19 views

set UITextLayer text to a CATextLayer?

I have a UIAlertView that asks for input and then the input is saved to a UITextField. I then want to be able to set the string of a CATextLayer to the text of the UITextField. I can NSLog the text in ...
2
votes
0answers
70 views

Making iOS two finger swipe similar to apple's four finger swipe to toggle between apps

Hi all we all know iOS four finger swipe to toggle between apps I am planning to do something similar, when I do a two finger swipe I will be doing the same thing as the four finger swipe but ...
0
votes
1answer
26 views

UIScrollView clipped during animation

I want move the ContentOffset of my UISCrollView. I'm using different methods, CABasicAnimation or UIView animateWithDuration but the problem is that, during the animation, my UIScrollView is clipped ...
7
votes
3answers
213 views

iphone : How to implement the page flip effect without curl?

I need to implement the page flip effect in an iOS app. But the the effect should not curl the page like it does with UIPageViewController and some other third party libraries that I have checked . ...
1
vote
2answers
96 views

How to create a continuous animation in iOS which will also run when app in background?

I am creating a game in which i have to move coveyner belt continuously from top to bottom.The problem arises when my app goes into background and is resumed later. The object is removed from ...
0
votes
1answer
49 views

UITableViewCell drop shadow not drawing for some cells

I have a custom tableview cell subclass which draws a drop shadow... When I scroll down, some of the cells do not have their shadows drawn... This also happens when I scroll back up. I have ...
0
votes
0answers
88 views

Animate a cube in iOS

Hello I have created a cube using 4 UIViews and I want this cube to nonstop spin around. For now I have a PanGesture and you can rotate the cube to its X-Axis, I want the same effect to just happen ...
0
votes
2answers
60 views

Why does giving addArcWithCenter a startAngle of 0 degrees make it start at 90 degrees?

I'm creating a CAShapeLayer to use as a mask for a UIView's layer. I'm using a UIBezierPath to draw the shape layer. It's working fine, except I'm getting some odd results when I draw. The geometry is ...
0
votes
1answer
31 views

Why does this animation only work once?

I have a UIView containing a UITapGestureRecognizer that triggers a method called handleLeftTap. -(void)handleLeftTap { self.player.direction = LEFT; if(!self.isAnimating && ...
0
votes
1answer
78 views

Reset UIScrollView contentOffset during CoreAnimation

I have a UIScrollView that is vertically scrolled with coreAnimation as follows: - (void) scrollAnimation { CGRect bounds = scrollview.bounds; CABasicAnimation *animation = ...
1
vote
1answer
28 views

My PanGestureRecognizer won't move when i want to resize it

I Have a UIPanGestureRecognizer. It works fine. I made an if statement so when someone touches the picture, it will be alpha 0.7 and it will be 1,5 times bigger. The alpha works fine, but when i type ...
1
vote
1answer
36 views

Why NSWindow animator setFrame:display:animate: didn't work sometimes?

I'm new to Cocoa. And I'm working on extending a project's function. The original function of that project is open a file and display the file icon in a nsbox(which is in nswindow?) And when I ...
0
votes
1answer
58 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
1answer
32 views

how to animate a view containing a subview

i'm still a beginner in xcode. here is my problem.. i have a scrollview made programitaically in which there is a uilabel made inside it programmically. i have placed the ssrollview in the edge of the ...
0
votes
0answers
37 views

How can I make two CAKeyframeAnimations run simultaneously on different layers?

I set up two animations with the code below: CAKeyframeAnimation *fadeWorldOutThenIn = [CAKeyframeAnimation animationWithKeyPath:@"opacity"]; fadeWorldOutThenIn.duration = 0.8f; ...
0
votes
0answers
69 views

CALayer mask slows down view transitions iPhone 4

Im using a CAShapeLayer mask to animate the drawing of circular progress bar: CGMutablePathRef path = CGPathCreateMutable(); CGPathAddArc(path, Nil, 99.65, 99.25, 84, radians(startAngle), ...
0
votes
2answers
44 views

Chain animations in UIVIEW inside of for loop

I have some problems with animations. Here is what I am trying to do. First I have a for loop where I make some animations of UILabels, for example label1.frame = CGRectMake(xBoard, 5, ...
0
votes
1answer
43 views

Interpolation issue on custom UICollectionViewFlowLayout

I'm having an issue with a custom UICollectionViewFlowLayout Like this video shows Issue Video, when my cell bounces back to the center (0:12 - 0:16) my transformation interpolation fails, and it ...
0
votes
2answers
81 views

iOS strange keyboard-hiding behavior when adding a subview

I have a view with an UITextField and need to show an UIDatePicker (it's hidden below the keyboard) when a button is pressed. I'm lazily instantiating the date picker because this allows me to show ...
0
votes
0answers
13 views

Notification at start (or commit) of any animation

I have a CALayer that updates the content of the layer when the visible area changes. DisplayLayer is called after an animation stops. I'd like to prepare the new content while an animation is ...
0
votes
1answer
53 views

Application is going in background

My Application is in ARC. In any view of my application there is one back ground image and on that image some animations are continuously repeating the images. Problem is : My application is going in ...
0
votes
0answers
18 views

Imageview And/OR Sound having memory Issue (going in back ground)

My Application is in ARC. In any view of my application there is one back ground image and on that image some animations are continuously repeating the images. Problem is : My application is going ...

1 2 3 4 5 50