| You can use C++ in Xcode quite easily. If you're doing console based programs (i.e. the ones that output text to a terminal) the project type you're interested in is Command Line Utility -> C++ Tool. Then add whatever C++ files you need and you're good to go.
Doing GUI related stuff on the Mac in C++ is considerably harder. I'm personally a huge fan of wxWidgets for C++ GUI development and that works great on the Mac too. |