0
votes
2answers
30 views
Animating a shape with CoreAnimation
Hello folks,
I approaching core animation and drawing empirically.
I am trying to animate a simple shape; the shape in question is formed by 3 lines plus a bezier curve. A red line …
0
votes
2answers
30 views
CALayer filters and bounds
Hi,
I'm just starting writing some Core Animation code and I've just spent a frustrating day trying to figure out a particular problem.
I have two layer-backed views that togethe …
0
votes
0answers
14 views
Weird scaling-effect going on when rotating a UIView with Core Animation
I'm rotating it like this:
[rotationView.layer setValue:value forKeyPath:@"transform.rotation.z"];
wrapped in a UIView animation block with beginAnimations... and commitAnimatio …
0
votes
1answer
49 views
how to implement an iPhone view transition animation with both flipping and scaling?
how can I implement the animation we see in the iPhone Music app's coverflow screen? when you click on a small view, it flips and scales up to another view? how can I do this? I ca …
0
votes
2answers
58 views
iPhone layer management - best practice
Louis - Thanks for your input. Here is what I did, and my current issues, which i don't understand.
The menus (2) are UIImageViews that respond to touch. Each is it's own class. T …
0
votes
2answers
25 views
Animate the enabling of a UIBarButtonItem?
Is there a way to animate enabling or disabling a button? I've tried the following with no success. I'm guessing at this point that the enabled property cannot be animated like opa …
0
votes
2answers
55 views
How would I implement animation along a path using the iPhone SDK?
i am developing game application for iphone.In my application there is one object(fly).In my application this object move straight forwared using animation but i want to move objec …
1
vote
1answer
45 views
Transparent layer-backed views
I'm trying to perform some simple animations using CA layers on transparent window and corresponding view. The problem I have is that every time I turn on the layer backing (either …
0
votes
0answers
18 views
CALayer renderInContext
I use "CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / -500;" it's success,but I use "renderInContext:context" ge …
0
votes
0answers
40 views
Animating custom callout for MKAnnotationView in MKMapView
I finally managed to put together a custom callout UIView that gets shown when a MKAnnotationView is tapped. I did this by overriding
- (void)setSelected:(BOOL)selected animated …
3
votes
1answer
61 views
Best way to vibrate a UI item?
I'm trying to vibrate/shake a UI element, namely a control, as if it were struck, and is resonating. I can use Core Animation to shake it vertically, horizontally or both, by one …
1
vote
2answers
55 views
View swap using push animation
I want to swap out one view with another by pushing the old view aside to slide in a new view (the kCATransitionPush type). To use CoreAnimation I need to work with CALayers with m …
0
votes
1answer
54 views
How can I show a sequence of buttons highlighting?
Similar to the Simon games of old, I want to show the user a button sequence & then have them repeat it back. The place I'm stuck is showing the first button highlighted for, …
3
votes
1answer
86 views
UIButton AppStore buy button animation
Do you have a sample code for the UIButton animation of the AppStore Price -> to Buy button. I tried a lot, but it doesn't work well with CAAnimationGroup (scale+translation) and i …
0
votes
3answers
47 views
CoreAnimation doesn’t work with -setAlphaValue on QTMovieView
Hello
I have some basic code for adding a QTMovieView. I want it to fade in, so I add an animation on setAlphaValue. Only issue is that it doesn't work. The alpha value is instant …
