I have started work at a new company and one of the guidelines I have been told to adhere to by my team lead is to rarely use retain/release and instead rely on properties for memory management. I can see the appeal of keeping the code clear and leaving less room for mistakes but opening up the interfaces like this makes me very uncomfortable. Generally speaking the architecture is very good but I have always been extremely pedantic about closing up my classes to the outside world, and for good reason. I've been through hell and back because of novice programmers not understanding the purpose of solid encapsulation and creating spider-web code, and now I'm being asked to make all my classes transparent.
Is using properties like this an accepted design methodology in objective-c? Can anyone provide me with links or a clue where my new team may have picked up this strategy?