vote up 2 vote down star
2

I need to build an application which will run on OS X, polling for data, and displaying that data full-screen in a purty, graphical way - generally "identifier: value" text in some sort of tabular format, but possibly with spark-lines to display historical changes, and "animations" (nothing fancy, just fading text and similar) to show updates.

However, I've no idea where to get started. I've no experience with desktop application development or development on a mac.

Where/at what should I be looking for OS X development information which will get me quickly up-to-speed (coming from a web-dev background)?

flag

4 Answers

vote up 4 vote down check

For OS X development, and a really nice overview that will get you writing actual applications quickly, I'm not sure anything can match Aaron Hillegass' book, Cocoa Programming for Mac OS X.

It's considered by many to be the Bible of Cocoa programming, and it is example driven. You are writing applications that you can actually run throughout.

It is useful, although not as much so, for iPhone development, which you don't mention in your question, but you do in your tags.

link|flag
I second this book, I found it to be a great book when I started out learning cocoa – paulthenerd May 17 at 16:30
the only part of it that I have found to be a little disappointing was the section on Core Data (in itself a pretty complex subject). The example is completely dependent on using Interface Builder to bind interface elements directly to the data. But other than that one section, it is absolutely top notch. – mmc May 17 at 17:57
vote up 0 vote down

Take a look at http://www.realsoftware.com. It's a cross platform development environment. Easy to learn, established user community, lot's of sample, shared code to get you started.

link|flag
Pretty fond of Cocoa but if you're just starting out Realbasic has a faster learning curve. – Jordan May 17 at 12:56
marked down because of the iPhone tag in the question. – Roger Nolan May 18 at 18:03
vote up 2 vote down

If you really want to go native with OS X that will mostly mean learning Objective-C and Cocoa. You get started by becoming an Apple Developer Connection (ADC) member and downloading XCode. Inside the ADC site there is a lot of information that will help you get started, Objective C reference, sample code, etc. .

Depending on your background you might want to consider using Adobe Air for your application, if you know Flex or Flash that might be easier for you to learn.

There are also a couple of question already up on stackoverflow on this subject http://stackoverflow.com/search?q=learn+cocoa

link|flag
vote up -4 vote down

Being a Microsoft Programmer and having an iPhone and Mac I find Cocoa horrible. It seems to be be a whole different syntax. Even Java was easier to learn coming from a C# Background.

But take a look at this site

http://cocoadevcentral.com/

link|flag
Any Reason why my answer is voted down? – Henrik P. Hessel May 17 at 11:47
Probably because cocoa is arguably a much better designed framework. It shows an economy of concepts not fond in .net or java – Stephan Eggermont May 17 at 12:04
Okay, thanks for the Feedback. – Henrik P. Hessel May 17 at 12:04
Mainly, because it wasn't an answer to the question. Everyone is entitled to their opinion, but it really had very little to do with what was being asked. – mmc May 17 at 13:22

Your Answer

Get an OpenID
or

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