Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best cocoa book for desktop mac development? [closed]

I'm learning iphone dev, and also want a solid handle at desktop development for the mac.

What do you guys recommend?

Language wise, is objective-c all I need?

Is desktop development locked down at all, or are you free to do anything once it is installed?

Does each app run in its own space as to not effect other desktop apps?

like image 202
Blankman Avatar asked Jan 07 '11 02:01

Blankman


1 Answers

  1. Cocoa Programming for Mac OS X is generally regarded as "the bible" of desktop Cocoa development.
  2. Objective-C is all you need, for the most part. Very rarely will you need a more domain-specific language. There are more options (MacRuby, PyObjC, Java, REALbasic, etc), but it's extremely common to do everything in Objective-C.
  3. Any "lockdown" on the desktop would be defined by the app store approval process and the permissions you can acquire from the user.
  4. Apps are not sandboxed on the Mac.
like image 121
Dave DeLong Avatar answered Nov 09 '22 05:11

Dave DeLong