Search Results

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: …
1
vote

Timer and animation events trumping TouchesEnded events

Try writing your own Timer-type class by spawning off onto a thread. Example: BOOL continue = YES; //outside of your @implementation -(void)doLoop { while(continue){ [NSTh …
1
vote

Why do these errors in Xcode Mean?

You (or some code) appears to be using key-value coding on your classes. I assume there's a hotKeyDisplayEntry ivar somewhere, maybe defined in a nib and a connection made but not in your class? …
0
votes

How accurate is CLLocation accuracy?

The CoreLocation framework gives you the radius of the circle for every CLLocation you get using the horizontalAccuracy/verticalAccuracy properties. You can specify to the CLLocationManager a desir …
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 …
0
votes

problems getting HTTPRiot working

2 Things: 1-- you're using class methods wrong. +initialize is a method that is guaranteed to be called once by the runtime. It's good for setting up static variables and the like (in a t …