Xcode 4 terms “Build for testing / Build for running / build for profiling / build for archiving”

Running is for running your app (on the Mac for Mac OS X, in the simulator or on the device for iOS). Profiling is for running your app with Instruments (for finding memory leaks, bottlenecks etc.). Testing is for running unit tests. Archiving is building a distributable package of you app (incl. Ad-hoc iPhone distributions … Read more

Xcode Debug Shortcuts

This is an easy one indeed. Go to Xcode>Preferences>Key Bindings and search for ‘step‘. There you can define your shortcuts for each action. PS: As @Jenn noted below “Pause/Continue” is missing from this list, which is by default bound to ⌃⌘Y (ctrl + command + Y)

tech