Re: drawRect not called when hosting Layers

2010-05-07 Thread Gustavo Pizano
Hell Bill. Thanks for the reply. Yes, I realize I was just setting the ivar directly and not from the accessor. I change it and its working now. G. On May 7, 2010, at 4:17 PM, Bill Garrison wrote: > > On May 6, 2010, at 2:32 PM, Gustavo Pizano wrote: > >> David thanks for the info about th

Re: drawRect not called when hosting Layers

2010-05-07 Thread Bill Garrison
On May 6, 2010, at 2:32 PM, Gustavo Pizano wrote: > David thanks for the info about the drawing. > > Im looking at the zombie error, and it seems the CALayer where Im putting the > animation its being deallocated, even have something like: > > CALayer * quickEdit; > @property(nonatomic, reta

Re: drawRect not called when hosting Layers

2010-05-06 Thread Gustavo Pizano
David thanks for the info about the drawing. Im looking at the zombie error, and it seems the CALayer where Im putting the animation its being deallocated, even have something like: CALayer * quickEdit; @property(nonatomic, retain)CALayer * quickEdit; and in the .m file quickEdit = [CALayer

Re: drawRect not called when hosting Layers

2010-05-06 Thread David Duncan
On May 6, 2010, at 8:09 AM, Gustavo Pizano wrote: > BUT the view controller of the super view that holds that particular view in > fact its controls 2 view controllers witch their respective views, the one > mentioned above and another one. > So when I swap the view controllers and change the vi

drawRect not called when hosting Layers

2010-05-06 Thread Gustavo Pizano
Hello, all. I need to place a CAanimation in of subview when mouse enters a Tracking area, the problems I had were: -I set up the view to [self setWantsLayer:YES]; -added the layer that will perform the animation; when I entered the mouse all was perfect I see the animation. BUT the view co