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

What is the cost of using autorelease in Cocoa?

There are two costs: (Assuming you have an option to avoid autoreleased objects.) You effectively unnecessarily extend the lifetime of your objects. This can mean that your memory …
2
votes

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

This is typically indicative of a memory management error. Make sure all your outlet declarations follow best practice: @interface MyClass : MySuperclass { UIClass *myOu …
5
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 …