I’m fairly new to Objective C, but have had some experience with Java. In Java tools like JUnit and JDocs can be extremely useful. Do these tools have parallels within Objective C, or are there even more useful tools for Objective C? At the moment I’m using X-Code and the iOS simulator.
Thanks for the help!
Off the top of my head…
Most useful are all the resources in developer.apple.com. They have docs, examples, references etc.
Also, use the Instruments app to help debug, analyse, and monitor your app. The various ‘Instruments’ therein are very useful.
For unit testing, you can include these when creating your app as standard (by simply checking the appropriate box). OCUnit is included. You can also try Google Toolbox, GHUnit, CATCH and OCMock to supplement this.
If I think of anything else, I’ll let you know.