On Mar 17, 2012, at 5:05 PM, G S wrote: > I would've converted my project to ARC had time permitted. I will say that > this new understanding does make me reconsider my opinion on the merits of > properties (meaning I think they have more merit than I used to). > > Would it be a waste of time to go through and add properties for my members > before converting to ARC? Does it make any difference?
With ARC, instance variables by default get the same automatic memory management as retaining properties. When you assign to a strong ivar in ARC any old value is released and the new value is retained. You don't need to use properties in ARC solely to get their memory management behavior. -- Greg Parker [email protected] Runtime Wrangler _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
