12
votes
x86 Assembly on a mac…
After installing any version of Xcode targeting Intel-based Macs, you should be able to write assembly code. Xcode is a suite of tools, only one of which is the IDE, so you don't have to use it if …
5
votes
Any ReSharper equivalent for Xcode?
Xcode has refactoring for C and Objective-C built in. Just select what you'd like to refactor, choose "Refactor..." from either the menu bar or the contextual menu, and you'll get a window includi …
48
votes
What is the best way to unit test Objective-C code?
Xcode includes OCUnit, an Objective-C unit testing framework, and support for running unit tests (OCUnit or otherwise) as part of y …
18
votes
Change templates in XCode
You wouldn't change the existing templates. In other words, don't modify anything under the /Developer hierarchy (or wherever you installed your developer tools).
Ins …
8
votes
Error Code Reference for OSX/Cocoa
You should look at the <Framework/FrameworkErrors.h> header for whatever framework the method you're using that's returning an error comes from.
For example, an NSE …
1
vote
XCode equivalent of ‘ __asm int 3 / DebugBreak() / Halt ?
You can just insert a call to Debugger() — that will stop your app in the debugger (if it's being run under the debugger), or halt it with an exception if it's not.
Also, …
2
votes
Is it just the iPhone simulator that is restricted to intel only Mac’s?
The iPhone SDK is documented to require an Intel-based Mac. Even if some people may be able to have gotten it to run on some other hardware doesn't mean that it will run correctly, that Apple will …
3
votes
Unit testing in XCode 3.1 with Objective-C
You don't need to do this stuff to just run your tests.
If you're writing tests for an application, you should just need to set the Test Host and Bundle Loader build setti …
0
votes
Passing switches to Xcode 3.1 user scripts
You can't pass parameters to user scripts — instead, user scripts operate on the context you're working in (e.g. the selected file, the selected text, etc.).
You should use the context to d …
0
votes
What is the best way to integrate TFS version control with XCode?
One way would be to use the Team Foundation System client under Windows in VMWare, and check out (or whatever TFS calls it) your sources to a directory on your Mac that's shared with the virtual ma …
2
votes
Beginner question about XCode 3.1.1 and static libraries
You're correct that making target A depend upon target B (whether within the same project or across projects) does not cause target A to link against target B. You need to specify …
2
votes
How can you generate a Makefile from an Xcode project?
To build your project outside of the IDE, check out the xcodebuild command-line tool.
…
15
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
Xcode supports text macros that can be invoked via the Insert Text Macro menu at the end of the Edit menu. They can also be invoked using Code Sense, Xcode's code completion tech …
10
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
When using Code Sense with many keybaords, use control-comma to show the list of available completions, control-period to insert the most likely completion, and control-slash & shift-control-sl …
2
votes
Is there a key combination in Xcode to implement a Protocol?
There is not currently such a refactoring in Xcode.
If you'd like it, please file an enhancement request …
