User mj1531 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T10:18:34Z http://stackoverflow.com/feeds/user/17991 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/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/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/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/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>