Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good resource/book for learning Objective-C [closed]

I have have been trying to learn Objective-C for a little bit now. I was wondering if anyone knows of good online references guides/courses related to the topic that are good know of any good books related to this topic.

Thank you.

like image 578
brettfazio Avatar asked Mar 16 '23 03:03

brettfazio


1 Answers

Three great free references for learning objective-C are:

  1. http://www.raywenderlich.com/ -- Ray Wenderlich provides high quality tutorials for many topics ranging from basic to advances objective-c programming.

  2. http://nshipster.com/ -- NSHipster is a journal of the overlooked bits in Objective-C, Swift, and Cocoa. Updated weekly.

  3. http://littlebitesofcocoa.com/ -- Similar to NSHipster, utilizing short, sweet, and to the point articles for IOS and OSX development.

What I used to begin learning Objective-C and IOS development are the books:

  1. Big Nerd Ranch Guide - Objective-C Programming https://www.bignerdranch.com/we-write/objective-c-programming/

  2. Big Nerd Ranch Guide - IOS Programming https://www.bignerdranch.com/we-write/ios-programming/

As programming is always changing, some tutorials and methods are going to be a small bit outdated using updated versions of Xcode. If you are using a book, I would recommend downloading the version of Xcode to whatever is being used in the book.

If something is not working properly, look up errors on google or post questions on stackoverflow -- solving errors are what help you learn!

Hope this helps!

like image 54
ecatalano Avatar answered Mar 19 '23 02:03

ecatalano