0
votes
1answer
13 views
Forcing Consecutive Animations with CABasicAnimation
I have a notification that fires in my model when certain properties change. As a result, a selector in a particular view object catches the notifications to change the position of the view …
0
votes
2answers
29 views
Pragmatic way of handling mouse in Core Animation layers
Hello,
I'm starting working with Core Animation and I started wondering how to handle various kinds of mouse events like
mouse entered a CALayer
mouse exited a CALayer
mouse click on a CALayer
For …
0
votes
3answers
346 views
How do I trigger a callback when a NSAnimationContext ends?
I have an animation which moves some views around. When this animation completes I want the window to recalculate the keyview loop. My code is simmilar to the follow mock code:
[NSAnimationContext …
1
vote
0answers
23 views
How come my Core Animation transformation always returns to it’s start-state?
Hello experts!
I am trying to perform some kind of animation of a layer in my iPhone application. It does not matter what I do I always get the same results: after the animation is done it jerks back …
0
votes
0answers
12 views
How do I get NSTextFields to fully animation using Core Animation with a layer backs NSView
I have a very basic app I'm using for experimenting with Core Animation.
NSWindow
-ContentView
--CustomView
---NSTextField
I set the content view to be layer backed in interface builder and create a …
0
votes
3answers
54 views
Core Data + Core Animation/CALayer together??
I am making an Cocoa app with custom interfaces. So far I have implemented one version of the app using CALayer doing the rendering, which has been great given the hierarchical structure of CALayers, …
0
votes
0answers
18 views
Mixing CAEAGLLayer with other CALayers
I'm trying, unsuccessfully, to combine OpenGL content with other CALayers. In particular, I would like to overlay the OpenGL content above the other layers (with alpha transparency).
I run into two …
1
vote
2answers
53 views
iPhone animation efficiency solutions, layering questions
I'm working on writing a rather basic app. It uses minimal touch input, and mostly just plays fancy animations. There isn't much animation, but the way it's currently done seems super inefficient and …
0
votes
1answer
12 views
CAAnimation duration not being applied
I am applying a CAAnimation to move a toolbar on- and off-screen.
When I touch the superview, that fires the following method:
- (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
…
4
votes
4answers
155 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 …
0
votes
1answer
27 views
Simple Core Animation View Rotation
I'm going to look into Core Animation in more detail soon but at the moment I'm just looking to rotate a view by a specified angle. I was wondering if anyone could point me to some code or provide a …
1
vote
2answers
100 views
Fading out a Cocoa window
Hello I am wondering if there is a way to animate a window in objective-c using core-animation or quartz. I would like to fade out a window when I close it. My OSX operating system is Tiger.
Edit: …
0
votes
1answer
42 views
Can you animate gradients using Quartz in an iPhone?
Hi,
I am new to iPhone development and am currently toying with recreating a charting tool I developed for Silverlight.
Currently I'm using a gradient to 'fill' a rectangle representing a bar within …
1
vote
1answer
171 views
Core animation code structure/conventions
In learning Core Animation, I learned very quickly that if you don't do it right, you get really weird undefined behavior. To that end, I have a few questions that will help me conceptually understand …
0
votes
0answers
42 views
Animating a falling feather using Core Animation on the iPhone.
Hello Animators!
The scenario: The user has touched and moved an image to a certain position, he/she then release the object. It should now in a realistic way fall to the bottom of the screen, see …
