What are best practices that you use when writing Objective-C and Cocoa? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T01:18:52Z http://stackoverflow.com/feeds/question/155964 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa 76 What are best practices that you use when writing Objective-C and Cocoa? pixel 2008-10-01T02:13:42Z 2009-10-18T18:12:12Z <p>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).</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/155966#155966 6 Answer by KiwiBastard for What are best practices that you use when writing Objective-C and Cocoa? KiwiBastard 2008-10-01T02:16:48Z 2008-10-01T02:16:48Z <p>Golden Rule: If you alloc then you release!</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156098#156098 101 Answer by Kendall Helmstetter Gelner for What are best practices that you use when writing Objective-C and Cocoa? Kendall Helmstetter Gelner 2008-10-01T03:17:10Z 2008-10-01T03:37:40Z <p>There are a few things I have started to do that I do not think are standard:</p> <p>1) With the advent of properties, I no longer use "_" to prefix "private" class variables. After all, if a variable can be accessed by other classes shouldn't there be a property for it? I always disliked the "_" prefix for making code uglier, and now I can leave it out.</p> <p>2) Speaking of private things, I prefer to place private method definitions within the .m file in a private category like so:</p> <pre><code>#import "MyClass.h" @interface MyClass (private) - (void) someMethod - (void) someOtherMethod @end @implementation MyClass </code></pre> <p>Why clutter up the .h file with things outsiders should not care about?</p> <p>3) I have taken to putting dealloc at the top of the .m file, just below the @synthesize directives. Shouldn't what you dealloc be at the top of the list of things you want to think about in a class? That is especially true in an environment like the iPhone.</p> <p>3.5) In table cells, make every element (including the cell itself) opaque for performance. That means setting the appropriate background color in everything.</p> <p>3.6) When using an NSURLConnection, as a rule you may well want to implement the delegate method:</p> <pre><code>- (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse { return nil; } </code></pre> <p>I find most web calls are very singular and it's more the exception than the rule you'll be wanting responses cached, especially for web service calls. Implementing the method as shown disables caching of responses.</p> <p>Also of interest, are some good iPhone specific tips from Joseph Mattiello (received in an iPhone mailing list). There are more, but these were the most generally useful I thought:</p> <p>4) - Avoid doubles! Another tip. The iphone DOES NOT support ANY double precision<br /> calculation natively. These are also emulated using libraries. Only<br /> use double precision if you have to, CoreLocation for instance. Make<br /> sure you end your constants in 'f' to make gcc store them as floats. ex, float val = someFloat * 2.2; should be. This is mostly important when someFloat may acually be a<br /> double, you don't need the mixed mode math, since you're losing<br /> precision in 'val' on storage. float val = someFloat * 2.2f;</p> <p>5) Properties Set your properties as nonatomic. They're atomic by default and upon<br /> synthesis semaphore code will be created to prevent multi-threading<br /> problems. 99% of you probably don't need to worry about this and the<br /> code is much less bloated and memory efficient when set to nonatomic.</p> <p>6) SQLite Sql can be a very, very fast way to cache large data sets. A<br /> map application for instance can cache it's tiles into SQLite files. The most<br /> expensive part is disk I/O. Avoid many small write by sending BEGIN; and COMMIT;</p> <p>between large blocks. We use a 2 second timer for instance that<br /> resets on each new submit. When it expires, we send COMMIT; , which<br /> causes all your writes to go in one large chunk. It's store in RAM<br /> until then, so don't wait tooooo long.</p> <p>Also, SQL will block you GUI if it's on your main thread. It's a good<br /> idea to store your queries at static objects, and run your sql on a<br /> separate thread. Make sure to wrap anything that modifies the data<br /> base for query strings in @synchronize() {} blocks</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156186#156186 28 Answer by schwa for What are best practices that you use when writing Objective-C and Cocoa? schwa 2008-10-01T03:53:27Z 2008-10-01T04:48:45Z <p>@kendell</p> <p>Instead of:</p> <pre><code>@interface MyClass (private) - (void) someMethod - (void) someOtherMethod @end </code></pre> <p>Use:</p> <pre><code>@interface MyClass () - (void) someMethod - (void) someOtherMethod @end </code></pre> <p>New in Objective-C 2.0.</p> <p>Class extensions are described in Apple's Objc 2 Reference.</p> <p><em>"Class extensions allow you to declare additional required API for a class in locations other than within the primary class @interface block"</em></p> <p>So they're part of the actual class - and NOT a (private) category in addition to the class. Subtle but important difference.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156288#156288 3 Answer by schwa for What are best practices that you use when writing Objective-C and Cocoa? schwa 2008-10-01T04:54:13Z 2008-10-01T04:54:13Z <p>Clean up in dealloc.</p> <p>This is one of the easiest things to forget - esp. when coding at 150mph. Always, always, always clean up your attributes/member variables in dealloc.</p> <p>I like to use Objc 2 attributes - <em>with</em> the new dot notation - so this makes the cleanup painless. Often as simple as:</p> <pre><code>- (void)dealloc { self.someAttribute = NULL; [super dealloc]; } </code></pre> <p>This will take care of the release for you and set the attribute to NULL (which I consider defensive programming - in case another method further down in dealloc accesses the member variable again - rare but <em>could</em> happen).</p> <p>With GC turned on in 10.5, this isn't needed so much any more - but you might still need to clean up others resources you create, you can do that in the finalize method instead.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156295#156295 21 Answer by schwa for What are best practices that you use when writing Objective-C and Cocoa? schwa 2008-10-01T04:59:44Z 2008-10-01T04:59:44Z <p>This is subtle one but handy one. If you're passing yourself as a delegate to another object, reset that object's delegate before you dealloc.</p> <pre><code>- (void)dealloc { self.someObject.delegate = NULL; self.someObject = NULL; // [super dealloc]; } </code></pre> <p>By doing this you're ensuring that no more delegate methods will get sent. As you're about to dealloc and disappear into the ether you want to make sure that nothing can send you any more messages by accident. Remember self.someObject could be retained by another object (it could be a singleton or on the autorelease pool or whatever) and until you tell it "stop sending me messages!" it thinks your just about to be dealloced object is fair game.</p> <p>Getting into this habit will save you from lots of weird crashes that are a pain to debug.</p> <p>The same principal applies to Key Value Observation, and NSNotifications too.</p> <p>Edit:</p> <p>Even more defensive, change:</p> <pre><code>self.someObject.delegate = NULL; </code></pre> <p>into:</p> <pre><code>if (self.someObject.delegate == self) self.someObject.delegate = NULL; </code></pre> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156317#156317 11 Answer by schwa for What are best practices that you use when writing Objective-C and Cocoa? schwa 2008-10-01T05:16:50Z 2008-10-01T05:16:50Z <p>Try to avoid what I have now decided to call Newbiecategoryaholism. When newcomers to Objective-C discover categories they often go hog wild, adding useful little categories to every class in existence (<em>"What? i can add a method to convert a number to roman numerals to NSNumber rock on!"</em>).</p> <p>Don't do this.</p> <p>Your code will be more portable and easier to understand with out dozens of little category methods sprinkled on top of two dozen foundation classes.</p> <p>Most of the time when you really think you need a category method to help streamline some code you'll find you never end up reusing the method.</p> <p>There are other dangers too, unless you're namespacing your category methods (and who besides the utterly insane ddribin is?) there is a chance that Apple, or a plugin, or something else running in your address apce will also define the same category method with the same name with a slightly different side effect....</p> <p>OK. Now that you've been warned, ignore the "don't do this part". But exercise extreme restraint.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156343#156343 4 Answer by schwa for What are best practices that you use when writing Objective-C and Cocoa? schwa 2008-10-01T05:31:02Z 2008-10-01T05:31:02Z <p>Also, semi-related topic (with room for more responses!):</p> <p><a href="http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago">What are those little Xcode tips &amp; tricks you wish you knew about 2 years ago?</a>.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156652#156652 21 Answer by Chris Hanson for What are best practices that you use when writing Objective-C and Cocoa? Chris Hanson 2008-10-01T08:04:58Z 2008-10-01T08:04:58Z <p>Write unit tests. You can test a <strong>lot</strong> of things in Cocoa that might be harder in other frameworks. For example, with UI code, you can generally verify that things are connected as they should be and trust that they'll work when used. And you can set up state &amp; invoke delegate methods easily to test them.</p> <p>You also don't have public vs. protected vs. private method visibility getting in the way of writing tests for your internals.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156665#156665 11 Answer by Chris Hanson for What are best practices that you use when writing Objective-C and Cocoa? Chris Hanson 2008-10-01T08:10:26Z 2008-10-01T08:10:26Z <p>Resist subclassing the world. In Cocoa a lot is done through delegation and use of the underlying runtime that in other frameworks is done through subclassing.</p> <p>For example, in Java you use instances of anonymous <code>*Listener</code> subclasses a lot and in .NET you use your <code>EventArgs</code> subclasses a lot. In Cocoa, you don't do either — the target-action is used instead.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158274#158274 12 Answer by Chris Hanson for What are best practices that you use when writing Objective-C and Cocoa? Chris Hanson 2008-10-01T15:40:11Z 2008-10-01T15:40:11Z <p>Don't write Objective-C as if it were Java/C#/C++/etc.</p> <p>I once saw a team used to writing J2EE web applications try to write a Cocoa desktop application. As if it was a J2EE web application. There was a lot of AbstractFooFactory and FooFactory and IFoo and Foo flying around when all they really needed was a Foo class and possibly a Fooable interface.</p> <p>Part of ensuring you don't do this is truly understanding the differences in the language. For example, you don't need the abstract factory and factory classes above because Objective-C class methods are dispatched just as dynamically as instance methods, and can be overridden in subclasses.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158304#158304 32 Answer by Chris Hanson for What are best practices that you use when writing Objective-C and Cocoa? Chris Hanson 2008-10-01T15:47:25Z 2008-10-01T15:47:25Z <p>Use standard Cocoa naming and formatting conventions and terminology rather than whatever you're used to from another environment. There <strong>are</strong> lots of Cocoa developers out there, and when another one of them starts working with your code, it'll be much more approachable if it looks and feels similar to other Cocoa code.</p> <p>Examples of what to do and what not to do:</p> <ul> <li>Don't declare <code>id m_something;</code> in an object's interface and call it a <em>member variable</em> or <em>field</em>; use <code>something</code> or <code>_something</code> for its name and call it an <em>instance variable</em>.</li> <li>Don't name a getter <code>-getSomething</code>; the proper Cocoa name is just <code>-something</code>.</li> <li>Don't name a setter <code>-something:</code>; it should be <code>-setSomething:</code></li> <li>The method name is interspersed with the arguments and includes colons; it's <code>-[NSObject performSelector:withObject:]</code>, not <code>NSObject::performSelector</code>.</li> <li>Use inter-caps in method names, parameters, variables, class names, etc. rather than underbars.</li> <li>Class names start with an upper-case letter, variable and method names with lower-case.</li> </ul> <p>Whatever else you do, <strong>don't</strong> use Win16/Win32-style Hungarian notation. Even Microsoft gave up on that with the move to the .NET platform.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158453#158453 3 Answer by mj1531 for What are best practices that you use when writing Objective-C and Cocoa? mj1531 2008-10-01T16:19:14Z 2008-10-01T16:19:14Z <p>I know I overlooked this when first getting into Cocoa programming.</p> <p>Make sure you understand memory management responsibilities regarding NIB files. You are responsible for releasing the top-level objects in any NIB file you load. Read <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/LoadingResources/CocoaNibs/chapter_3_section_6.html#//apple_ref/doc/uid/10000051i-CH4-DontLinkElementID_12" rel="nofollow">Apple's Documentation</a> on the subject.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158532#158532 16 Answer by mj1531 for What are best practices that you use when writing Objective-C and Cocoa? mj1531 2008-10-01T16:35:03Z 2008-10-01T16:35:03Z <p>Make sure you bookmark the <a href="http://developer.apple.com/technotes/tn2004/tn2124.html" rel="nofollow">Debugging Magic</a> page. This should be your first stop when banging your head against a wall while trying to find the source of a Cocoa bug.</p> <p>For example, it will tell you how to find the method where you first allocated memory that later is causing crashes (like during app termination).</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158627#158627 8 Answer by mj1531 for What are best practices that you use when writing Objective-C and Cocoa? mj1531 2008-10-01T16:57:52Z 2008-10-01T16:57:52Z <p>If you're using Leopard (Mac OS X 10.5) or later, you can use the Instruments application to find and track memory leaks. After building your program in Xcode, select Run > Start with Performance Tool > Leaks.</p> <p>Even if your app doesn't show any leaks, you may be keeping objects around too long. In Instruments, you can use the ObjectAlloc instrument for this. Select the ObjectAlloc instrument in your Instruments document, and bring up the instrument's detail (if it isn't already showing) by choosing View > Detail (it should have a check mark next to it). Under "Allocation Lifespan" in the ObjectAlloc detail, make sure you choose the radio button next to "Created &amp; Still Living".</p> <p>Now whenever you stop recording your application, selecting the ObjectAlloc tool will show you how many references there are to each still-living object in your application in the "# Net" column. Make sure you not only look at your own classes, but also the classes of your NIB files' top-level objects. For example, if you have no windows on the screen, and you see references to a still-living NSWindow, you may have not released it in your code.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/158652#158652 4 Answer by mj1531 for What are best practices that you use when writing Objective-C and Cocoa? mj1531 2008-10-01T17:02:07Z 2008-10-01T17:02:07Z <p>Don't forget that NSWindowController and NSViewController will release the top-level objects of the NIB files they govern.</p> <p>If you manually load a NIB file, you are responsible for releasing that NIB's top-level objects when you are done with them.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/167495#167495 35 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-03T15:43:40Z 2008-10-03T16:06:54Z <h2>IBOutlets</h2> <p>Historically, memory management of outlets has been poor. Current best practice is to declare outlets as properties:</p> <pre><code>@interface MyClass :NSObject { NSTextField *textField; } @property (nonatomic, retain) IBOutlet NSTextField *textField; @end </code></pre> <p>Using properties makes the memory management semantics clear; it also provides a consistent pattern if you use instance variable synthesis.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/167536#167536 9 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-03T15:51:39Z 2008-10-03T16:03:08Z <h2>Declared Properties</h2> <p>You should typically use the Objective-C 2 Declared Properties feature for all your properties. If they are not public, add them in a class extension. Using declared properties makes the memory management semantics immediately clear, and makes it easier for you to check your dealloc method -- if you group your property declarations together you can quickly scan them and compare with the implementation of your dealloc method.</p> <p>You should think hard before not marking properties as 'nonatomic'. As <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter_1_section_1.html" rel="nofollow">The Objective C Programming Language Guide</a> notes, properties are atomic by default, and incur considerable overhead. Moreover, simply making all your properties atomic does not make your application thread-safe. Also note, of course, that if you don't specify 'nonatomic' and implement your own accessor methods (rather than synthesising them), you must implement them in an atomic fashion.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/169783#169783 33 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-04T05:15:29Z 2008-10-04T05:15:29Z <h2>Use the LLVM/Clang Static Analyzer</h2> <p>You use the <a href="http://clang.llvm.org/StaticAnalysis.html" rel="nofollow">Clang Static Analyzer</a> to -- unsurprisingly -- analyse your C and Objective-C code (no C++ yet) on Mac OS X 10.5. It's trivial to install and use:</p> <ol> <li>Download the latest version from <a href="http://clang.llvm.org/StaticAnalysisUsage.html" rel="nofollow">this page</a>.</li> <li>From the command-line, <code>cd</code> to your project directory.</li> <li>Execute <code>scan-build -k -V xcodebuild</code>.</li> </ol> <p>(There are some additional constraints etc., in particular you should analyze a project in its "Debug" configuration -- see <a href="http://clang.llvm.org/StaticAnalysisUsage.html" rel="nofollow">http://clang.llvm.org/StaticAnalysisUsage.html</a> for details -- the but that's more-or-less what it boils down to.)</p> <p>The analyser then produces a set of web pages for you that shows likely memory management and other basic problems that the compiler is unable to detect.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175118#175118 28 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T16:46:23Z 2008-10-06T16:46:23Z <h2>Don't use unknown strings as format strings</h2> <p>When methods or functions take a format string argument, you should make sure that you have control over the content of the format string.</p> <p>For example, when logging strings, it is tempting to pass the string variable as the sole argument to <code>NSLog</code>:</p> <pre><code> NSString *aString = // get a string from somewhere; NSLog(aString); </code></pre> <p>The problem with this is that the string may contain characters that are interpreted as format strings. This can lead to erroneous output, crashes, and security problems. Instead, you should substitute the string variable into a format string:</p> <pre><code> NSLog(@"aString: %@", aString); </code></pre> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175134#175134 11 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T16:49:19Z 2008-10-06T16:49:19Z <h2>Sort strings as the user wants</h2> <p>When you sort strings to present to the user, you should not use the simple <code>compare:</code> method. Instead, you should always use localized comparison methods such as <code>localizedCompare:</code> or <code>localizedCaseInsensitiveCompare:</code>.</p> <p>For more details, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/SearchingStrings.html" rel="nofollow">Searching, Comparing, and Sorting Strings</a>.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175874#175874 27 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T19:45:30Z 2008-10-06T19:45:30Z <h2>Avoid autorelease</h2> <p>Since you typically(1) don't have direct control over their lifetime, autoreleased objects can persist for a comparatively long time and unnecessarily increase the memory footprint of your application. Whilst on the desktop this may be of little consequence, on more constrained platforms this can be a significant issue. On all platforms, therefore, and especially on more constrained platforms, it is considered best practice to avoid using methods that would lead to autoreleased objects and instead you are encouraged to use the alloc/init pattern.</p> <p>Thus, rather than:</p> <pre><code>aVariable = [AClass convenienceMethod]; </code></pre> <p>where able, you should instead use:</p> <pre><code>aVariable = [[AClass alloc] init]; // do things with aVariable [aVariable release]; </code></pre> <p>When you're writing your own methods that return a newly-created object, you can take advantage of <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html#//apple_ref/doc/uid/20000994" rel="nofollow">Cocoa's naming convention</a> to flag to the receiver that it must be released by prepending the method name with "new".</p> <p>Thus, instead of:</p> <pre><code>- (MyClass *)convenienceMethod { MyClass *instance = [[[self alloc] init] autorelease]; // configure instance return instance; } </code></pre> <p>you could write:</p> <pre><code>- (MyClass *)newInstance { MyClass *instance = [[self alloc] init]; // configure instance return instance; } </code></pre> <p>Since the method name begins with "new", consumers of your API know that they're responsible for releasing the received object (see, for example, <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSObjectController_Class/Reference/Reference.html#//apple_ref/doc/uid/20002044-BBCEAICF" rel="nofollow">NSObjectController's <code>newObject</code> method</a>).</p> <p>(1) You can take control by using your own local autorelease pools. For more on this, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html#//apple_ref/doc/uid/20000047" rel="nofollow">Autorelease Pools</a>.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/195969#195969 7 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-12T20:14:24Z 2008-10-12T20:14:24Z <h2>Think about nil values</h2> <p>As <a href="http://stackoverflow.com/questions/156395/sending-a-message-to-nil">this question</a> notes, messages to <code>nil</code> are valid in Objective-C. Whilst this is frequently an advantage -- leading to cleaner and more natural code -- the feature can occasionally lead to peculiar and difficult-to-track-down bugs if you get a <code>nil</code> value when you weren't expecting it. </p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/297307#297307 17 Answer by Marc Charbonneau for What are best practices that you use when writing Objective-C and Cocoa? Marc Charbonneau 2008-11-17T23:11:06Z 2008-11-17T23:11:06Z <p>Some of these have already been mentioned, but here's what I can think of off the top of my head:</p> <ul> <li><strong>Follow KVO naming rules.</strong> Even if you don't use KVO now, in my experience often times it's still beneficial in the future. And if you are using KVO or bindings, you need to know things are going work the way they are supposed to. This covers not just accessor methods and instance variables, but to-many relationships, validation, auto-notifying dependent keys, and so on.</li> <li><strong>Put private methods in a category.</strong> Not just the interface, but the implementation as well. It's good to have some distance conceptually between private and non-private methods. I include everything in my .m file.</li> <li><strong>Put background thread methods in a category.</strong> Same as above. I've found it's good to keep a clear conceptual barrier when you're thinking about what's on the main thread and what's not.</li> <li><strong>Use <code>#pragma mark [section]</code>.</strong> Usually I group by my own methods, each subclass's overrides, and any information or formal protocols. This makes it a lot easier to jump to exactly what I'm looking for. On the same topic, group similar methods (like a table view's delegate methods) together, don't just stick them anywhere.</li> <li><strong>Prefix private methods &amp; ivars with _.</strong> I like the way it looks, and I'm less likely to use an ivar when I mean a property by accident.</li> <li><strong>Don't use mutator methods / properties in init &amp; dealloc.</strong> I've never had anything bad happen because of it, but I can see the logic if you change the method to do something that depends on the state of your object.</li> <li><strong>Put IBOutlets in properties.</strong> I actually just read this one here, but I'm going to start doing it. Regardless of any memory benefits, it seems better stylistically (at least to me).</li> <li><strong>Avoid writing code you don't absolutely need.</strong> This really covers a lot of things, like making ivars when a <code>#define</code> will do, or caching an array instead of sorting it each time the data is needed. There's a lot I could say about this, but the bottom line is don't write code until you need it, or the profiler tells you to. It makes things a lot easier to maintain in the long run.</li> <li><strong>Finish what you start.</strong> Having a lot of half-finished, buggy code is the fastest way to kill a project dead. If you need a stub method that's fine, just indicate it by putting <code>NSLog( @"stub" )</code> inside, or however you want to keep track of things.</li> </ul> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/372381#372381 5 Answer by slf for What are best practices that you use when writing Objective-C and Cocoa? slf 2008-12-16T19:27:06Z 2008-12-16T19:27:06Z <p>All these comments are great, but I'm really surprised nobody mentioned <a href="http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml" rel="nofollow">Google's Objective-C Style Guide</a> that was published a while back. I think they have done a very thorough job.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/837006#837006 2 Answer by NikWest for What are best practices that you use when writing Objective-C and Cocoa? NikWest 2009-05-07T20:57:48Z 2009-05-07T20:57:48Z <p>Use NSAssert and friends. I use nil as valid object all the time ... especially sending messages to nil is perfectly valid in Obj-C. However if I really want to make sure about the state of a variable, I use NSAssert and NSParameterAssert, which helps to track down problems easily.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/861183#861183 1 Answer by Owen Hartnett for What are best practices that you use when writing Objective-C and Cocoa? Owen Hartnett 2009-05-14T01:33:51Z 2009-05-14T01:33:51Z <p>One of the answers here states that "the most expensive part [of SQLite] is disk I/O." Normally, this is true, but on the iPhone, there is no disk. That makes the SQLite database, while not quite as fast as direct memory access, a lot faster than a disk based SQLite. Having a RAM based SQL database is a wonderful asset for persistant data - not only do you get near instant access to your data, but you can use it to push big ticket data out of your application's memory space and bring it back in really fast.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/890625#890625 1 Answer by bbrown for What are best practices that you use when writing Objective-C and Cocoa? bbrown 2009-05-20T22:46:02Z 2009-05-20T22:46:02Z <p>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 <a href="http://cocoawithlove.com/2008/11/singletons-appdelegates-and-top-level.html" rel="nofollow">this blog entry</a>. <a href="http://stackoverflow.com/questions/338734/iphone-proper-usage-of-application-delegate">This thread</a> tipped me off.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/1585606#1585606 2 Answer by oefe for What are best practices that you use when writing Objective-C and Cocoa? oefe 2009-10-18T18:12:12Z 2009-10-18T18:12:12Z <p>Turn on all GCC warnings, then turn off those that are regularly caused by Apple's headers to reduce noise. </p> <p>Also run Clang static analysis frequently; you can enable it for all builds via the "Run Static Analyzer" build setting.</p> <p>Write unit tests and run them with each build.</p>