Search Results

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 …
59
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 …
33
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 …
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

What’s the best way to find out the installed version of the iPhone SDK?

In general, you get the version number for any SDK from the CoreServices/SystemVersion plist file: $Developer/Platforms/$Platform.platform/Developer/SDKs/$SDK.sdk …
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 …
1
vote

Specific help with Xcode Project Template that is not doing substitution in file contents

Further to Chris' answer ("There are two styles of templates..."), you can find examples of the new style in the templates for another platform... The following excerpt shows examples of a …
7
votes

Cocoa Bad Habits

Using exceptions for control flow (And other non-exceptional circumstances.) Since use of exceptions is brought up in another answer here and the …
6
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

Use the Class Browser to show inherited methods Apple's API reference documentation does not show methods inherited from a superclass. Sometimes, though. it's useful to be able to see the …