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 …
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 …
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 …
29
votes

What are best practices that you use when writing Objective-C and Cocoa?

Don't use unknown strings as format strings When methods or functions take a format string argument, you should make sure that you have control over the content of the format string. …
11
votes

What are best practices that you use when writing Objective-C and Cocoa?

Sort strings as the user wants When you sort strings to present to the user, you should not use the simple compare: method. Instead, you should always use localized compariso …
28
votes

What are best practices that you use when writing Objective-C and Cocoa?

Avoid autorelease 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 memor …
0
votes

Howto articles for iPhone development, Objective C

Simple iPhone application tutorial Apple's iPhone Dev Center does provide a tutorial which covers writing a complete, simple application. It uses small blocks of code that are given both …
2
votes

Linking File’s Owners and View Controller [iPhone SDK]

(This doesn't appear to be specific to iPhone -- it's a general class of problem for any platform.) It's barely clear what this means: "Now when I click my new xib, and reference a class id …
2
votes

How can I add an additional “view” to my iphone app?

There are numerous examples that show how to manage multiple full-screen views -- each view should typically be managed by a separate view controller. Check the Xcode templates for an example of ho …
15
votes

Do I need to release xib resources?

If you follow what is now considered to be best practice, you should release outlet properties, because you should have retained them in the set accessor: @interface MyCont …
8
votes

What are best practices that you use when writing Objective-C and Cocoa?

Think about nil values As this question notes, messages to nil are valid in Objective-C. Whi …
3
votes

iphone viewWillAppear not firing

If you use a navigation controller and set its delegate, then the view{Will,Did}{Appear,Disappear} methods are not invoked. You need to use the navigation controller delegate methods instea …
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 …
1
vote

How do you restart a query using NSFetchedResultsController

Have you set your view controller as the fetched results controller's delegate and implemented the …