> > 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?
Yes it would be a waste of time I think. If the code is working, leave it alone. I love ARC although I'm pleased I learned manual-retain-release first and now don't have to worry about 99% of memory issues. I like properties, even private ones, because I like to split the interface of the class, even the methods it only uses itself, from the implementation. So often I find I start with @synthesize foo=_foo; and by the time I get to the end of the project I've written custom foo: and setFoo: methods which do something else too. But it's all in the end just style and what makes you most productive. I follow one pattern which works for me. _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) 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 arch...@mail-archive.com