Search Results

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 …
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 …
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 …
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 …
14
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 …
2
votes

Can anyone recommend a complete ObjC/Cocoa or Cocoa-Touch tutorial?

The "Hello World"-style tutorial provided in the Dev Center seems to be closer to the middle ground that you seek, even if you say you don't want a "Hello World" example: …
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 …
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 …