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 …
4
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
To link a new framework
(In the Groups and Files pane, open the Targets disclosure triangle to display the targets associated with your project.)
In the Groups and Files pa …
55
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
Code completion etc.
Press Tab to accept the current completion.
Sometimes the first completion Xcode presents is not the one you want. If you press Escape, Xcode presents a pop-u …
31
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
Expanding the Editor view
If your window displays both the detail and editor view, you can press Command-Shift-E to expand the editor view to the full height of the window.
(This …
36
votes
What are best practices that you use when writing Objective-C and Cocoa?
IBOutlets
Historically, memory management of outlets has been poor.
Current best practice is to declare outlets as properties:
@interface MyClass :NSObject {
NSTextFie …
10
votes
What are best practices that you use when writing Objective-C and Cocoa?
Declared Properties
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 …
4
votes
Object allocate and init in Objective C
As others have noted, the two code snippets you show are not equivalent (for memory management reasons).
As to why the former is chosen over the latter:
The correct formulation of the latte …
2
votes
Memory leaking with [NSKeyedUnarchiver decodeObjectForKey]
I would suggest replacing this line:
venueIOList = [[decoder decodeObjectForKey:inKey] mutableCopy];
with:
ListClassName *decodedList = [decoder de …
34
votes
What are best practices that you use when writing Objective-C and Cocoa?
Use the LLVM/Clang Static Analyzer
You use the Clang Static Analyzer to -- unsurprisingly -- analyse your C and Obje …
1
vote
1
vote
how to do string conversions in objective c?
Further to Chris Hanson's answer, you can find out more about number formatters, their behaviour, and format strings, from …
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 …
0
votes
Memory leaking with [NSKeyedUnarchiver decodeObjectForKey]
Reducing peak memory footprint
In general, it is considered best practice to avoid generating autoreleased objects.
[Most of this paragraph amended from …
