6
votes
5answers
1k views
UIView animation vs CALayers on iPhone
I'm struggling with conceptualizing animations with a CALayer as opposed to UIView's own animation methods. Throw "Core Animation" into this and, well, maybe someone can articulate these concepts from …
6
votes
4answers
412 views
How to implement slurp effect on iPhone?
The iPhone has a private list of effects that Apple uses, such as "genieEffect" and "slurpEffect". I'm wondering how one would go about implementing the slurp effect (this is when you trash a mail …
6
votes
2answers
11k views
iPhone UIView Animation Best Practice
What is considered best practice for animating view transitions on the iPhone?
For example, the ViewTransitions sample project from apple uses code like:
CATransition *applicationLoadViewIn = …
6
votes
3answers
3k views
UIView perspective transform
I'm looking to perform a perspective transform on a UIView (such as seen in coverflow)
Does anyonew know if this is possible?
I've investigated using CALayer and have run through all the pragmatic …
5
votes
4answers
2k views
How to display a progress indicator overlay/HUD on iPhone?
I want to display a progress indicator in a semi-transparent box that floats over a table view. In other words, when the table contents are being downloaded, I want an "Updating" label to appear over …
5
votes
5answers
2k views
iPhone “slide to unlock” animation
Any ideas as to how Apple implemented the "slide to unlock" (also, "slide to power off" is another identical example) animation?
I thought about some sort of animating mask - but masking is not …
4
votes
1answer
89 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 pixel:
…
4
votes
4answers
171 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 …
4
votes
1answer
130 views
Jerky/juttery (core-)animation in a screensaver?
I've built a screensaver for Leopard which utilises core-animation. It doesn't do anything overly complicated; uses a tree of CALayers and CATextLayers to produce a "table" of data in the following …
4
votes
2answers
1k views
Cancel a UIView animation?
Is it possible to cancel a UIView animation while it is in progress? Or would I have to drop to the CA level?
i.e. I've done something like this (maybe setting an end animation action too):
[UIView …
4
votes
4answers
2k views
Can I use CGAffineTransformMakeRotation to rotate a view more than 360 degrees?
I'm writing an iPhone app, and I've got an image which I'ld like to have swirl outwards.
Currently my code looks like this (wrapped in a beginAnimations/commitAnimations block):
scale = …
4
votes
3answers
1k views
How do you explicitly animate a CALayer’s backgroundColor?
I'm trying to construct a CABasicAnimation to animate the backgroundColor property of a Core Animation CALayer, but I can't figure out how to properly wrap a CGColorRef value to pass to the animation. …
4
votes
2answers
1k views
How do you move a CALayer instantly (w/o animation)
I'm trying to drag a CALayer in an iPhone app.
As soon as I change its position property it tries to animate to the new position and flickers all over the place:
layer.position = CGPointMake(x, y)
…
3
votes
1answer
152 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 it doesn't work with …
3
votes
1answer
121 views
Observing animated property changes in a CALayer
I have a CABasicAnimation that animating a property of a CALayer e.g. bounds.origin. I want to be able to observe the property changing over time, but haven't really found a method that works 100%.
…
