Search Results

10
votes

Memory Management in Objective-C

It is generally not useful to repeat the basic rules of memory management, since almost invariably you make a mistake or describe them incompletely -- as is the case in the answers provided by 'hec …
12
votes

Avoiding, finding and removing memory leaks in Cocoa

Use the LLVM/Clang Static Analyzer To avoid creating memory leaks in the first place, use the Clang Static Analyzer …
9
votes

Avoiding, finding and removing memory leaks in Cocoa

Always use accessor methods; declare accessors using properties You make life much simpler for yourself if you always use accessor methods to assign values to instance variables (except i …
10
votes

Avoiding, finding and removing memory leaks in Cocoa

Don't overthink memory management For some reason, many developers (especially early on) make memory management more difficult for themselves than it ever need be, frequently by overthink …
2
votes

Understanding reference counting with Cocoa / Objective C

As ever, when people start trying to re-word the reference material they almost invariably get something wrong or provide an incomplete description. Apple provides a complete description of …