views:

200

answers:

4

I'm looking for a comprehensive list of all tools for debugging iPhone apps, and any online resources relating to them.

+3  A: 

How about the tools that come with Xcode, like gdb and Instruments?

This will also help: http://google.com/search?q=how+to+debug+iphone+apps

Dave DeLong
Or even just Xcode itself - syntax checker, static analyzer, breakpoints, etc...
Tim
@Tim +1 - the static analyzer has saved my bacon so many times!
Dave DeLong
Agreed, the static analyzer is always a huge help.
gerry3
A: 

Here is a good Apple document entitled: "Xcode Debugging Guide"

mahboudz
A: 

I assume this questions is about Xcode debugging. However i am developing web based iPhone apps using the like IUI and iWebkit etc. Normally for web development i would use Firefox/Firebug but for iPhone the Webkit is better (IMHO) and the javascript debugging is excellent. I also use the iPhone simulator rather then needing to deploy the code to a server.

PurplePilot
A: 

I've incorporated the following tools into my Xcode pipeline:

GHUnit - Unit testing which can run on the simulator and devices, and allows debugging.
OCMock - Mocking framework for use in the unit tests.
Appledoc - For creating more apple like API docs and including them into XCode.

Derek Clarkson