0
votes
2answers
42 views
How do I fade in /out a rectangle or text?
Hi all,
I want to achieve the effect of fade in / fade out the rect or text. I call CGContextFillRect or CGContextShowText in my UIVIew's drawRect: method. I wonder if there is a way to achieve the …
0
votes
0answers
16 views
How can I accurately time animations on an iPhone inside the normal flow of a program?
I've been using CALayer animations in my program, primarily to move around CALayers with animation on my screen. My problem is that I don't want to exit the layer-moving (card dealing, as it happens) …
0
votes
1answer
53 views
Iphone 3d Animation Problem
Hey guys.
I recently posted my problem but neither did I get an answer here or elsewhere, nor can I find my post again...
Anyways, I want to try to state my point clearer, hoping you can help me this …
0
votes
1answer
48 views
Animating a UIImageView tint
Similar to this previous question, I want to apply an arbitrarly-coloured tint to an arbitrary image (a UIImageView). However, I want the tint to fade away over N seconds of time, to have a "pulse" …
0
votes
1answer
35 views
Can Core Animations supports a 20 frames per second enlargement from 32 x 32 px to 120 x 170 px?
my background.jpg has 52 32x32 mini poker cards.png and when user touch on 1 card, it will enlarge to 120x 170 px.
At any point in time, there is only 1 card being chosen (i.e, being animated) with …
1
vote
2answers
54 views
Chaining Core Animation animations
Which is the most elegant and modular way to chain animation in a Core Animation context?
I mean to do animations that starts just when other finished (for example, changing position and then …
0
votes
3answers
43 views
Sliding from One View to Another.
How would I change from one view to another with a slide transition?
Thanks.
0
votes
1answer
20 views
Want to have a CALayer to display inside the window
I'm trying to get a CALayer with a black background to display. I've attached the AppDelegate as the delegate to the file's owner. The console reports correctly the "awaking from nib..." log …
0
votes
1answer
58 views
Resize and move a UIView with Core Animation (CAKeyFrameAnimation)
Is this possible? I can change the opacity and position (center) of the layer but whenever I try to change the size or origin, it doesn't work.
CAAnimationGroup* anigroup = [CAAnimationGroup …
0
votes
0answers
22 views
chopping deadspace out of UIViewAnimationTransitionCurlUp?
I'd like to utilize UIViewAnimationTransitionCurlUp more often in my applications however it has a very annoying trait... namely that the first 20% to 35% of it is non-action... I know this is the …
0
votes
3answers
71 views
iPhone animation problem SImulator vs Real Device
Hi!
This is my first question her so please be gentle:
I have followig animation code running smoothly on the simulator as well as on the real device (I am testng on iPhone 3GS 3.1.2).
Animation is a …
1
vote
3answers
90 views
Residual/trace in Core Animation & CALayers
I am making an Cocoa app, using Core Animation to create custom UI. However, whenever I drag some layers around, they often leave some "residuals/traces" onto the other layers.
So far, my guess is …
2
votes
1answer
41 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
1answer
23 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
37 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 …
