Best Way To Get Started With Mac Development - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T06:07:43Z http://stackoverflow.com/feeds/question/162099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development 5 Best Way To Get Started With Mac Development The.Anti.9 2008-10-02T12:52:42Z 2008-10-09T22:59:27Z <p>I just recently got my first mac. I do lots of programming on windows but now I want to get into Mac development. What are some languages i should know or tools i should use to get started with mac development?</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/162102#162102 3 Answer by MattW. for Best Way To Get Started With Mac Development MattW. 2008-10-02T12:53:44Z 2008-10-02T12:53:44Z <p>For desktop apps, cocoa+objective-c are the way to go. XCode is the best editor for that. For webapps, I'd check out Ruby on Rails and Textmate. </p> <p>If you've done Java development, you can keep on doing that, too. Eclipse will be very familiar.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/162134#162134 12 Answer by hunterjrj for Best Way To Get Started With Mac Development hunterjrj 2008-10-02T13:02:30Z 2008-10-02T13:02:30Z <p>Cocoa(R) Programming for Mac(R) OS X (3rd Edition) by Aaron Hillegass.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">http://www.amazon.com/Cocoa-Programming-Mac-OS-3rd/dp/0321503619/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1222952450&amp;sr=8-1</a></p> <p>Fantastic book and the author has alot of credibility - Apple brought him in to train their developers on Cocoa.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/162207#162207 1 Answer by Kristopher Johnson for Best Way To Get Started With Mac Development Kristopher Johnson 2008-10-02T13:16:36Z 2008-10-02T13:16:36Z <p>Check out Apple's <a href="http://developer.apple.com/mac/" rel="nofollow">Mac Dev Center</a></p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/162281#162281 1 Answer by casademora for Best Way To Get Started With Mac Development casademora 2008-10-02T13:32:51Z 2008-10-02T18:02:10Z <p>I've joined the <a href="http://www.mac-developer-network.com/" rel="nofollow">Mac Developer Network</a>, and subscribe to the many podcasts there. Not a reference mind, you just a place to keep you motivated on your journey.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/162294#162294 1 Answer by orj for Best Way To Get Started With Mac Development orj 2008-10-02T13:35:06Z 2008-10-02T13:35:06Z <p>I second hunterjrj's suggestion of <a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Aaron Hillegass</a>'s book. </p> <p>Another book that I'm reading at the moment which is a good tour of Xcode 3 is Fritz Anderson's <a href="http://rads.stackoverflow.com/amzn/click/0321552636" rel="nofollow">Xcode 3 Unleashed</a>.</p> <p>Apple's development website also has lots of programming guides and video. Sign up at developer.apple.com. If you have an apple.com account already (or iTunes) it is easy to extend that to a developer membership. Note that you don't get <strong>all</strong> the developer info unless you pay for a full ADC membership. But all the API docs and programming guides are available without paying.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/176027#176027 0 Answer by Paul Lefebvre for Best Way To Get Started With Mac Development Paul Lefebvre 2008-10-06T20:21:41Z 2008-10-06T20:21:41Z <p>If you have Windows experience but also want to develop Mac software you might consider looking into <a href="http://www.realsoftware.com" rel="nofollow">REALbasic</a>. It doesn't give you complete access to the Mac OS X Cocoa framework, but it can be used to make some slick Mac apps. And it's really easy to get started with.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/189419#189419 0 Answer by Chris Schreiner for Best Way To Get Started With Mac Development Chris Schreiner 2008-10-09T22:19:32Z 2008-10-09T22:19:32Z <p>You could try combining f-script and traditional Cocoa (xcode in other words). f-script is great when you want to experiment with the Cocoa API, which is surely different from what you are used to. The more dynamic you stay, the faster you learn. That is my experience.</p> http://stackoverflow.com/questions/162099/best-way-to-get-started-with-mac-development/189526#189526 1 Answer by Gustavo Rubio for Best Way To Get Started With Mac Development Gustavo Rubio 2008-10-09T22:59:27Z 2008-10-09T22:59:27Z <p>Are you coming from a Windows environment? If you do I would recommend Mono which is a .Net free implementation or Java, both platforms work well in windows/osx/linux</p> <p>If you just want to target OSX then Cocoa/Objective-C/XCode is the way to go but im not quite sure how many documentation or examples you will find since there seems to be only one big provider for development tools for OSX and that is Apple itself compared to the myriad of development tools you might find developing for Windows.</p> <p>Of course there are many other alternatives, remember OSX is a Unix operative system, you could easily develop with Python/Perl/Ruby and many other scripting languages and development technologies just be sure to know what platforms are you going to target.</p>