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: …
9
votes
5answers
598 views

-[NSOperationQueue operations] returns an empty array when it shouldn’t?

I'm writing an application that does async loading of images onto the screen. I have it set up to be NOT concurrent (that is, it spawns a thread and executes them one at a time), so I've only overr …
0
votes
4answers
755 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

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 …
2
votes

How do I set UITableViewCellSelectionStyle property to some custom color?

Override didSelectRowAtIndexPath: and draw a UIView of a color of your choosing and insert it behind the UILabel inside the cell. I would do it something like this: UIView* selected …
0
votes

What are the iPhone app-name restrictions? (And [where] are they documented?!)

OSX in general supports UTF8 natively, throughout Cocoa to the Filesystem. An example in 日本語: …
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 …
2
votes

play two sounds simultaneously iphone sdk

You would have to use AudioQueueServices. The docs are here: …
0
votes

Easy way to archive interlinked objects

Check out Object serialization here: Enc …
2
votes

AVAudioPlayer not responding

I have 2 quick suggestions: Check to see if that path actually gives you data. Alloc a NSData object using [[NSData alloc] initWithContentsOfFile:path] and inspect it in the debugg …
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 …
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 …