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?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 8 down vote accepted

There is no need to expose properties to the entire world. In your implementation .m file you can add a little category to declare 'private' properties. E.g.

#import "Class.h"

@interface Class ()
@property (nonatomic, strong) NSDate *privateProperty
@end

@implementation Class

@synthesize privateProperty;

...
@end

Nothing in Objective-C is ever really private in strict terms, so I'd say this was good practice — it hides almost all of the retain/release stuff without requiring an ARC-compatible runtime and has the side effect of not requiring you to mention your instance variables in the header at all (though there are other ways to achieve that).

As a historical note, I think this was the first way to move instance variables out of the header — which is something permitted only by the 'new' runtime on iOS and 64bit Intel 10.6+ — so that may be a secondary reason why your team have settled upon it. Unless they've explicitly told you to make your classes transparent, they may actually be completely in agreement with your feeling (and the well accepted object oriented principle) that implementations should be opaque.

link|improve this answer
This is a fantastic answer, thank you very much – Sam Jan 26 at 9:24
feedback

You don't have to declare your properties publicly. Using a class category or class extension, you can place your properties within the implementation.

For example:

// in AnObject.h
@interface AnObject : NSObject
@end

// in AnObject.m
@interface AnObject () // () is class extension, (foo) is a class category
@property (retain) NSString *foo;
@end

@implementation AnObject
@synthesize foo;
@end

For more information, see Apple's documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.