vote up 6 vote down star
2

As a programmer, I've been pretty much stuck in the Windows world. I invested a lot of time and effort learning MFC, ATL and, recently, .NET (mostly WinForms, I'm not interested in Web development for now). Since I don't have Parallels (and won't buy any software or hardware in the following months), I can't afford to run my old Windows apps now, so I would like to port them to the Mac.

My main questions are:

  1. I've read there are two main APIs, Carbon and Cocoa. Which one would you suggest me to learn first? (I don't know Objective-C, but I'm not against learning it.)
  2. What are the main development tools (IDEs, debuggers, etc.) for the Mac?
  3. Are there any frameworks or RAD tools that help with with window creation (I'd prefer a MFC-like approach to a VB-like drag-and-drop editor).
  4. Could my current skill set help me in learning to program for the Mac, or do I have to start basically from zero?
flag

Longhorn213, I knew that I would have to learn Objective-C to use Cocoa. What I meant with the original statement is that I don't mind having to learn a new language if Cocoa is better than Carbon. – Eduardo León Jan 20 at 17:37
Cocoa is the future, Carbon is the past. I wouldn't recommend learning Carbon now, except for a specific need. – David Thornley Jan 20 at 17:42
If you still need to develop in VS studio: stackoverflow.com/questions/413820/… – Kb Jan 20 at 17:47
Thankfully, all the courses I'm taking at college are management-related (I already took all the programming-related ones, there are no more left), so I won't miss Visual Studio. Anyways, thanks. – Eduardo León Jan 20 at 18:04

5 Answers

vote up 18 vote down check

To answer your questions:

  1. Cocoa. And learn Objective-C. There are several questions here on SO about this. You could also try RealBasic.
  2. Xcode, free with Mac OS X.
  3. It's in Xcode. Xcode has a UI builder.
  4. It will help, but the Mac is a different animal. I suggest Cocoa Programming for Mac OS X by Aaron Hillegass.

I come from a similar background (Windows, ASP.NET, C#) and I found the Mac to be very fun as a platform for software development. The iPhone is very interesting too. I'd suggest you browse through past questions here on SO for more info about Mac development. There have been some great questions and answers.

link|flag
vote up 3 vote down

Objective-C is a highly underestimated language and Cocooa is a great and easy to learn framework. The documentation on Apple Developer Connection is worth checking out. If you already have some background in the C-style languages: C/C++/Java you will learn it in no time.

link|flag
I know Java (the language), but not its associated tools, so I haven't done anything useful with it. But I know C++ and its associated tools quite well. – Eduardo León Jan 20 at 17:20
The transition from C++ to Objective-C is even better than coming from Java to C. Objective-C is a real superset of C unlike C++ which is something new and just looks like C. – nooomi Jan 20 at 17:24
vote up 1 vote down

Also, you need to learn about UNIX03, which one is the ceritification that OS X have. Remember that OS X comes from a XNU and FreeBSD (Darwin), and most of his system call are based on SUSv3 standard.

link|flag
vote up 0 vote down

You go cross-platform(ish) and learn Ruby. Leopard comes with 1.8.6 as core. You can easily code Ruby from the standard text editor but TextMate is as much of a joy to use as OS X itself.

You could try the Ruby Cocoa Beta book from Pragmatic Programmers as a manual (http://www.pragprog.com/titles/bmrc/rubycocoa).

I haven't tried Objective-C yet (it's on my list for this year though!) so I can't compare, but Ruby is a great language for coding in.

link|flag
Ruby is not a good language for developing Mac OS X native apps. – Robert S. Jan 20 at 17:15
Why? If you already know Ruby, you might well start with it to ease the learning curve, but if you're going to learn Mac programming I'd advise getting familiar with the standard development environment. – David Thornley Jan 20 at 17:22
Ruby seems to be fun. Not what I would use to do computer graphics, for example, but very good to crunch the text files and that kind of things. – Eduardo León Jan 20 at 17:24
If you want to learn Ruby, learn Ruby. I have no problem with that. I don't see it as a useful way to start using Mac programming, unless you already know Ruby. – David Thornley Jan 20 at 17:40
I'm not gonna use Ruby to develop desktop apps. And what I write most of the time is desktop apps. (Or, to be more precise, desktop executables.) – Eduardo León Jan 20 at 17:43
show 1 more comment
vote up 0 vote down

If the text editor in XCode doesn't suit you, I'd recommend BBEdit ( or it's free little brother Text Wrangler).

In addition to the Hilligas book, the Apple website has a pretty good introduction to Objective-C.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.