Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recomendation on learning Objective-C for C++ programmers [closed]

Is there any books or cheat sheets or online courses that will help C++ programmer learn Objective-C quickly. From my experience, I can somehow read most of the Objective-C code in an iPhone app project and am sometimes confused about the symbol syntax, such as +, @, which are not easy to search online.

like image 565
Qi Luo Avatar asked Aug 30 '25 16:08

Qi Luo


1 Answers

This is an amazing pdf book called From C++ to Objective-C by Pierre Chatelier that I relied on when I learned it. It's free on his website.

http://pierre.chachatelier.fr/programmation/fichiers/cpp-objc-en.pdf

Edit:

The pdf doesn't touch on some of the modern syntactical sugar that's been added nor does it speak specifically to ios development. After reading the pdf I spent a few days on one of those learn to code websites (treehouse in my case) just to get a quick exposure to the ecosystem.

If your experienced in c++ that's probably all you need.

like image 95
Brandon Avatar answered Sep 02 '25 06:09

Brandon