Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know about the HIG (which is quite handy!), but what programming practices do you use when writing Objective-C, and more specifically when using Cocoa (or CocoaTouch).

share
show 1 more comment

locked by Tim Post May 10 '12 at 10:06

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.

closed as not constructive by Lix, Cody Gray, stema, Flexo, ehird May 10 '12 at 8:28

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

33 Answers

1 2

The Apple-provided samples I saw treated the App delegate as a global data store, a data manager of sorts. That's wrongheaded. Create a singleton and maybe instantiate it in the App delegate, but stay away from using the App delegate as anything more than application-level event handling. I heartily second the recommendations in this blog entry. This thread tipped me off.

share
5  
Have you ever heard anyone tell you that the singleton is an anti-pattern? There is a reason for this....I'm disappointed that singletons are still viewed as the answer to all ills by cocoa programmers. – jkp Jun 6 '10 at 12:01
show 1 more comment

Only release a property in dealloc method. If you want to release memory that the property is holding, just set it as nil:

self.<property> = nil;
share
show 1 more comment
#import "MyClass.h"

@interface MyClass ()
- (void) someMethod;
- (void) someOtherMethod;
@end

@implementation MyClass
share
1 2

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