2
votes
4answers
1k views
Is there a performance hit for using UIImage in CALayer?
I'm using a whole bunch of CALayers, creating a tile-based image not unlike GoogleMaps (different versions of the same image with more/less detail).
The code I'm using to do this is:
…
0
votes
4answers
782 views
Animation End Callback for CALayer?
Hi all. I'm wondering where the callbacks are (or if there are anything) for animations in a CALayer. Specifically, for implied animations like altering the frame, position, etc. In a UIView, you c …
1
vote
Animation End Callback for CALayer?
I answered my own question. You have to add an animation using CABasicAnimation like so:
CABasicAnimation* anim = [CABasicAnimation animationWithKeyPath:@"frame"];
anim.fromValu …
2
votes
Custom view transition in OpenGL ES
While I cannot completely answer your question without doing some more research of my own, I can help a bit:
-In order to get the view of a UINavigationController, you need to take a screen …
1
vote
iphone SDK: Not sure why I am not receiving UITextField events?
You have to set the delegate properly. You observe the protocol, but you need to do this:
@interface YourController : UIViewController<UITextFieldDelegate> {
IBOutlet UI …
