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