Re: ARC not ready for primetime?

2012-03-26 Thread davelist
If you want to be certain Apple see this, please file a bug report at http://bugreport.apple.com Dave On Mar 25, 2012, at 1:05 PM, Scott Andrew wrote: I've uploaded a quick sample that shows what i have been seeing. I put some NSLogs to show the deallocs for the NWColorViewController and

Re: ARC not ready for primetime?

2012-03-25 Thread Scott Andrew
I've uploaded a quick sample that shows what i have been seeing. I put some NSLogs to show the deallocs for the NWColorViewController and NWColorLayer so you can see dealloc being called. Load in instruments Allocations app and switch back and forth a few times and end on the Hide tab.

ARC not ready for primetime?

2012-03-24 Thread Scott Andrew
I seem to have hit a few limitations with ARC. 1.) Subclasses of CALayer are not being fully released which causes my view controller to remain around. There is still some small bit of memory being left behind. Even if I do the following simple code: -(void) viewDidLoad { [super

Re: ARC not ready for primetime?

2012-03-24 Thread T.J. Usiyan
Could you post the code for the sublayer and what is the residual memory? On Sat, Mar 24, 2012 at 4:17 AM, Scott Andrew scottand...@roadrunner.comwrote: I seem to have hit a few limitations with ARC. 1.) Subclasses of CALayer are not being fully released which causes my view controller to

Re: ARC not ready for primetime?

2012-03-24 Thread Dave Zarzycki
Scott, Please reduce this down to a test case so that we might try and reproduce what you are observing. Thanks! davez On Mar 24, 2012, at 1:17 AM, Scott Andrew scottand...@roadrunner.com wrote: I seem to have hit a few limitations with ARC. 1.) Subclasses of CALayer are not being fully