Cocoa and Objective-C resources? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T07:32:56Zhttp://stackoverflow.com/feeds/question/7571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources17Cocoa and Objective-C resources?Tao Zhyn2008-08-11T06:39:54Z2009-04-22T22:19:40Z
<p>What are the recommended online or offline resources for Objective-C and Cocoa programming?</p>
<p>My online resources:</p>
<ul>
<li><a href="http://oreilly.com/pub/ct/37" rel="nofollow">O'Reilly</a>, Some useful articles and examples, but has not been updated for quite a while</li>
<li><a href="http://cocoadevcentral.com/d/learn%5Fobjectivec/" rel="nofollow">Learning Objective C</a>, This seems like a good resource so far</li>
<li><a href="http://www.mac-developer-network.com/podcasts/latenightcocoa/index.html" rel="nofollow">Late Night Cocoa Podcast</a>, I recently discovered this one, starting on episode 1</li>
</ul>
<p>My offline resources: </p>
<ul>
<li>None, I have no books on my shelf</li>
</ul>
<p>I need some help finding a good book, any suggestions?</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/7572#75721Answer by Adhip Gupta for Cocoa and Objective-C resources?Adhip Gupta2008-08-11T06:43:47Z2008-08-11T08:42:37Z<p>Does <a href="http://beta.stackoverflow.com/questions/1939/howto-articles-for-iphone-development" rel="nofollow" title="Jonathan Livingston Seagull">this</a> help?
Or, <a href="http://beta.stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c" rel="nofollow" title="Bootstrap">this</a>?</p>
<p>@Tao: I know. I never would have searched for iPhone too. Just that I remembered reading that thread! :) And, edit tags requires 1000 points I believe. So, I too am far far away! :)</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/7578#75787Answer by Tao Zhyn for Cocoa and Objective-C resources?Tao Zhyn2008-08-11T07:02:42Z2008-08-18T23:48:14Z<p>@adhip Gupta: </p>
<p>I did see the <a href="http://beta.stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c" rel="nofollow">Understanding reference counting with Cocoa / Objective C</a>. <a href="http://beta.stackoverflow.com/users/819/matt-dillard" rel="nofollow">Matt Dillard</a> gives an excellent answer.</p>
<p>I did not see <a href="http://beta.stackoverflow.com/questions/1939/howto-articles-for-iphone-development" rel="nofollow">Howto articles for iphone development</a>. I never thought of searching for iPhone. Well, not really interested in programming for the iPhone. Someone should edit that tags for that question to include objectivec. I do not have the ability yet.</p>
<p>Resources from that question:</p>
<ul>
<li><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/ObjC.pdf" rel="nofollow">The Objective-C 2.0 Programming Language (pdf)</a>, from <a href="http://beta.stackoverflow.com/users/116/mark-harrison" rel="nofollow">Mark</a></li>
<li><a href="http://www.cocoalab.com/?q=becomeanxcoder" rel="nofollow">Become an Xcoder</a>, from <a href="http://beta.stackoverflow.com/users/714/chris-hanson" rel="nofollow">Chris</a>, tutorials, articles, links to blogs, looks promising</li>
<li><a href="http://cocoadevcentral.com/" rel="nofollow">Cocoa Dev Central</a>, from <a href="http://beta.stackoverflow.com/users/714/chris-hanson" rel="nofollow">Chris</a>, free book, pdf and online</li>
</ul>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/7580#758024Answer by Mike McMaster for Cocoa and Objective-C resources?Mike McMaster2008-08-11T07:04:41Z2008-08-11T07:04:41Z<p>Alright, let's start with the obvious Apple resources:</p>
<p><a href="http://developer.apple.com/mac/" rel="nofollow" title="Jonathan Livingston Seagull">Mac Dev Center</a></p>
<p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter_1_section_1.html" rel="nofollow" title="Bootstrap">Introduction to The Objective-C 2.0 Programming Language</a></p>
<p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjCTutorial/01Introduction/chapter_1_section_1.html" rel="nofollow" title="Micro-ISV: From Vision to Reality">Introduction to Cocoa Application Tutorial</a></p>
<p>For books, these two are generally considered must-haves:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0672325861" rel="nofollow" title="MicroISV/Startup Bootcamp">Programming in Objective-C by Stephen Kochan</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow" title="The Business of Software forum">Cocoa Programming for Mac OS X by Aaron Hillegass</a></p>
<p>Programming in Objective-C is <a href="http://rads.stackoverflow.com/amzn/click/0321566157" rel="nofollow">due for an update in November 2008</a> to cover Objective-C 2.0 topics. Cocoa Programming for Mac OS X was updated fairly recently.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/8064#80642Answer by Andrew Grant for Cocoa and Objective-C resources?Andrew Grant2008-08-11T18:28:58Z2008-08-11T18:28:58Z<p>Get one good book, learn some of the basics, then Google as needed when you have questions for your project. You'll eventually find the online resources that are most helpful for your needs - remember Cocoa and Objective-C cover a great many areas and different sites often have a specific focus.</p>
<p>If you're working on something for Mac/iPhone be sure to download relevant sample code from Apples site. Many samples that may seem unrelated will often provide valuable information about different areas. If you have XCode the documentation should be integrated.</p>
<p>I'd strongly recommend <a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow" title="Cocoa Programming for Mac OSX">Cocoa Programming For Mac OSX</a>. This is a great book that happens to also be highly-readable. It has tips for configuring XCode which being new to the IDE I found very helpful.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/12600#126001Answer by crackity_jones for Cocoa and Objective-C resources?crackity_jones2008-08-15T18:56:53Z2008-08-15T18:56:53Z<p>As others have mentioned Cocoa Programming for Mac OSX is a very good choice for a book. Make sure that you get the third edition if you're using Leopard and Xcode 3.0 or later. There were some changes to interface builder that can be a bit confusing if it is your first time through and you're using the older book.</p>
<p>The third edition also accounts for some useful features from Objective-C 2.0</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/13675#136752Answer by Sören Kuklau for Cocoa and Objective-C resources?Sören Kuklau2008-08-17T15:38:25Z2008-08-17T15:38:25Z<p>Don't forget the <a href="http://www.cocoadev.com/" rel="nofollow">CocoaDev</a> wiki. Pretty much any API/object/etc. has its own article with often useful advice on good and bad practices, etc.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/17604#176041Answer by Adam for Cocoa and Objective-C resources?Adam2008-08-20T08:36:40Z2008-08-20T08:36:40Z<p>Also, don't forget to check out the mailing list at <a href="http://www.cocoabuilder.com" rel="nofollow">Cocoabuilder</a>. It's definitely one of the first places I check for answers.</p>
<p>There is also a screencast tutorial website that's been around for awhile; <a href="http://cocoacast.com" rel="nofollow">Cocoacast</a>. Most of the content follows the 2nd Ed. of Cocoa Programming for Mac OS X, but they have some newer screencasts going over some of the new features and differences since the release of Leopard. Hopefully they'll start posting screencasts again regularly.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/22310#223101Answer by Nicolas Girard for Cocoa and Objective-C resources?Nicolas Girard2008-08-22T13:18:29Z2008-08-22T13:18:29Z<p>All the "no brainer" links and books have been presented and I strongly recommend them as well. One thing that really helped me (and motivated me) to get started is the online sessions from WWDC (available on iTunes). It is not free if you are not registered (and a paying dev) but it is well worth the money IMO if you are serious about learning Obj-C/Cocoa. </p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/30279#302791Answer by Clokey for Cocoa and Objective-C resources?Clokey2008-08-27T14:29:06Z2008-08-27T14:29:06Z<p>Aaron Hillegass's book Cocoa Programming for Mac OS X (Current version is the third addition) is more than enough for someone who has a passing understanding of C. </p>
<p>This book reminds me of the original K&R book in that it starts simply and then does an excellent job of building on previous chapters.</p>
<p>Another thing to bare in mind is that the Objective-C 2.0 reference from apple is an excellent reference but remember that there are quire a few limitations when it comes to its use against the iPhone SDK.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/129372#1293723Answer by Michael Tsai for Cocoa and Objective-C resources?Michael Tsai2008-09-24T19:36:00Z2008-09-24T19:36:00Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa Programming for Mac OS X by Aaron Hillegass</a> is a great introduction for someone who's already familiar with C. Once you know the basics of how everything fits together, I recommend reading Apple's <a href="http://lists.apple.com/mailman/listinfo/cocoa-dev" rel="nofollow">Cocoa-Dev</a> mailing list and Omni's <a href="http://www.omnigroup.com/mailman/listinfo/macosx-dev" rel="nofollow">MacOSX-dev</a> mailing list. <a href="http://www.cocoabuilder.com" rel="nofollow">Cocoabuilder</a> is useful for searching these lists to answer questions, but I recommend actually reading the list archives sequentially. In the long run that will save you time, as you'll be aware of the different areas of functionality and potential gotchas before you go down the wrong path or run into trouble.</p>
<p>Language references are also useful. For Objective-C, I like the PDF of Apple's <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/ObjC.pdf" rel="nofollow">The Objective-C 2.0 Programming Language</a>. A great book on C is <a href="http://rads.stackoverflow.com/amzn/click/013089592X" rel="nofollow">C: A Reference Manual</a>.</p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/169819#1698191Answer by mmalc for Cocoa and Objective-C resources?mmalc2008-10-04T05:43:46Z2008-10-04T05:43:46Z<h2>OO Philosophy and Design Patterns</h2>
<p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter_1_section_1.html" rel="nofollow">The Objective-C 2.0 Programming Language</a> is certainly a good reference, however by way of introduction you should also read <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/OOP_ObjC/Introduction/chapter_1_section_1.html" rel="nofollow">Object-Oriented Programming with Objective-C</a>. This is likely to be useful even if you have used other object-oriented environments -- Cocoa's perspective on OOP is sometimes rather different from what you may be used to.</p>
<p>In addition, you should also read <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/Introduction/chapter_1_section_1.html" rel="nofollow">Cocoa Fundamentals Guide</a> -- in particular the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaDesignPatterns/chapter_5_section_1.html#//apple_ref/doc/uid/TP40002974-CH6-SW6" rel="nofollow">chapter on design patterns</a>.</p>