Slashdot Mirror


Which Coding Framework for Mac OS X ?

DrStrangeLoop asks: "I am in the progress of getting into coding for Mac OS X, and I am wondering which GUI framework/language i should focus on. Apparantly, there are at least three options: the Cocoa Objective-C API [I don't want to learn Objective-c, but it seems that's how Apple wants me to code], the Cocoa Java API [gets compiled to PPC binaries, lots of APIs available [think Google], but absolutely no decent documentation to be found] and Swing Java classes [look 'n feel of Cocoa, but portable]. However, the most important feature for me is a clean and easy IPC with BSD layer processes. I figure sockets will work with all options, but what about the other mechanisms? Any suggestions?" Update: 10/13 22:08 GMT by C :For those curious about the Cocoa/Carbon debate, you can find an article that discusses this very issue, here. Thanks to the folks over at Freenode's #macdev for providing the link.

141 of 327 comments (clear)

  1. You also have Carbon by akac · · Score: 5, Informative

    Carbon is a good API to begin with. You can use C++ or C and access all the nice GUI of OS X.

    Cocoa just makes things a lot easier.

    I like to think of it this way (though technically its wrong, its a nice way to think of it): Win32 == Carbon; .NET == Cocoa

    1. Re:You also have Carbon by BitGeek · · Score: 5, Insightful


      Carbon only exists to support people who have existing Mac OS applications that they want to move to OS X.

      If you're beginning, learn Objective C and use cocoa.

      There is no reason to use carbon for new applications. You can access every API that exists in carbon from within cocoa apps and objective-c, but the reverse isn't true.

      With Cocoa you get everything Carbon has, but with Carbon you don't get everyhting Cocoa has-- especially the superiority of Objective-C and the Appkit and Foundation frameworks.

      Anything you really need to do, you can do in carbon, its just a lot harder.

      There's no reason not to use Cocoa for Mac applications.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    2. Re:You also have Carbon by akac · · Score: 2, Interesting

      Actually - to all the people who say that you should use Cocoa if you're new to OS X - thats not completely true. I prefer Cocoa myself. But if I was to write an app I meant to be cross platform between OS X and Windows or Linux, then Carbon MAY make more sense since I may be able to reuse the C/C++ code there a lot easier. Of course, you could write your backend in C/C++ and use Cocoa for just the front end. And that would work if you have an app that is in the design stage. But if you are porting apps already designed that intermix frontend with backend (like most apps do unfortunately), then Carbon makes more sense - its closer to Win32 programming as well.

  2. Native, native, native by Clock+Nova · · Score: 2, Informative

    I'd go with Cocoa. The more native, the better.

    --
    There they were, sitting in the van with all those dials, and the cat was dead. -V. Marchetti, CIA
    1. Re:Native, native, native by akac · · Score: 3, Insightful

      Though I prefer Cocoa, Carbon is just as native as Cocoa is.

  3. learning objective c by Dougal · · Score: 5, Informative

    To be honest, I'd say get over it and learn Objective C. For an experienced programmer it won't take you long to get to grasps with the basics of Objective C, and Cocoa is really easy to work with. Who knows, you might even grow to like it :) At first I thought Objective C was weird, but now I really like it.

    Get a beginners book and work your way through it. I recommend Cocoa Programming for Mac OS X by Aaron Hillegass, published by Addison Wesley, ISBN 0201726831. This seems to be what most people learn from.

    1. Re:learning objective c by T-Kir · · Score: 3, Informative

      I agree, I used to program on the NeXTStep platform (my placement/internship company were typesetters, the native PostScript came in handy) and it is virtually (I may be completely wrong here, I havent touched OS X, let alone Macs ;) ) the same thing, just a tad older

      With our NeXT systems, you could program in Objective C (being the staple diet), but you could also use C/C++ code as well if you wanted. It won't take to long to get used to (I've heard some peeps say that Objective C is more of a proper OO than C++, but I'm not taking any sides here!)... plus as a programmer, once you know the basics it is just a case of getting used to the semantics, syntax style and quirks of the different language you're learning. Good Luck!

      --
      Are you local? There's nothing for you here!
    2. Re:learning objective c by Twirlip+of+the+Mists · · Score: 3, Informative

      To learn Objective C, start by learning C. Objective C is just a superset of C; most of what you'll be writing will be pure C code.

      Once you've mastered C-- which takes about two days, using nothing more complex than a copy of The C Programming Language by Kernighan and Ritchie-- you can learn Objective C using Apple's language reference, which is available for free on the web at this link. (Warning: 1.7 MB PDF) Apple also has a number of tutorials on Cocoa programming available on developer.apple.com that make for a nice, gentle introduction. You'll know Currency Converter inside and out in a matter of hours.

      how easy is it to connect front end cocoa stuff like drawers, services access, etc to java backend services

      Trivial. There's a full Java language binding for the Cocoa API. You can, in fact, write an entire graphical application in Java with the Cocoa API (using Interface Builder for the GUI, naturally).

      As for your other questions, I'll defer to people with more experience than I have.

      --

      I write in my journal
    3. Re:learning objective c by RevAaron · · Score: 3, Informative

      The NeXTSTEP API is quite a bit different than Cocoa. They're both Objective-C, use MVC throughout, and share many of the same class names, but the API is a lot different.

      OpenStep and Cocoa, however, are virtually the same thing. OpenStep was a big revision of the OS and the API.

      But all the same, I heartily reccomend using Objective-C and Cocoa, especially above the other options presented: Java and C/Carbon.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    4. Re:learning objective c by jimbolaya · · Score: 4, Informative
      Knowing Java will give you a big head start, since it's syntax is also based on C. There are numerous differences, to be sure, but I don't imagine you'll have a hard time. Probably the trickiest things for a Java developer who has never used C will be pointers, and header files, and of course, memory management. Obj-C uses reference counting, which is lower-maintenance that C or C++, but not nearly as easy as the garbage collection of Java.

      Coming from Java, you may want to use "Objective-C++" simply for the ability to declare local variables anywhere in your code. Straight C and Obj-C only let you declare local variable at the beginning of a block, but Java, C++, and Obj-C++ let you declare them anywhere in your method. Obj-C++ gives you a bunch of other stuff I don't even know about, but for me, all I care about is the flexibility with local variables. Simply use the ".mm" extension instead of ".m" for your source files.

      --

      There ain't no rules here; we're trying to accomplish something.

    5. Re:learning objective c by sweetleaf · · Score: 2, Insightful

      This is truly absurd. You will _not_ be a master of C in two days. You will be the programming equivalent of a tourist speaking broken english with a travel dictionary.

      C, like any language, has its idioms and design patterns and these will take time to learn. Buying a book like K&R will help but I imagine there are more useful introductions to C. K&R is an incredibly terse, albeit a useful reference - and iirc it does not have much of the c library spelled out in detail)

      In summary, C is great, but don't expect to be a master of it anytime soon. And anyone who claims they are a master after 2 days is not.

    6. Re:learning objective c by BitGeek · · Score: 3, Informative


      Just get any of the good Cocoa books like "Building Cocoa Applications or the Hilgress book.

      They will teach you Objective-C in the early chapters.

      Apple puts out a free learning Objective-C book with their development platform.

      You don't need to waste time with C becuase you already know java and Objective-C is more like Java than C in use.

      Learning C means learning a lot of useless pointer crap that you don't ever use in Objective-C.

      I'd say, it will take you no time learning it, and the compiler will catch all the mistakes you're likely to make. (I came from Java, though I'd used C a lot in the past.)

      Java is enough like C that you should have an easy time-- just get a cocoa book.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    7. Re:learning objective c by RAMMS+EIN · · Score: 2

      There is a distinction here between learning the language per se, and learning to program in the language. Usually the efforts required are inversely related; assembly language is trivial to learn, but awfully hard to program in. One can, indeed, learn all of C's syntax by heart in two days, but the same isn't true for the C library or the Way to do Things (WOW) in C. However, if you are learning C just so you can learn Objective C and code for Cocoa, you don't need to learn those; you will be using the Cocoa libraries and Way to do Things (WOW). Therefore, a crash course in C syntax should be sufficient here.

      Besides, the original poster seems to already know see fairly well, considering that he is looking for IPC with BSD layer processes. My advice for him is to stick with what Apple prefers (apparently Cocoa/ObjC) if the apps are meant for OS X only, and with a portable library (wxWindows?) otherwise.

      ---
      M$'s software sucks? So what? So do vacuum cleaners, and still everybody uses them.

      --
      Please correct me if I got my facts wrong.
    8. Re:learning objective c by Art+Tatum · · Score: 2

      Cocoa is portable and ported. See GNUstep

  4. Seems like you answered the question yourself. by tqbf · · Score: 5, Interesting
    If you need "clean and easy" integration with "BSD IPC" (the native programming interface of the underlying Darwin operating system), you need to be able to use its C-language calling interface. Of the 3 kits you mentioned, Cocoa/Objective-C is the only one that offers that.

    The ready-made integration offered by your two Java alternatives may not be useful for hardcore I/O anyways. How do you get a handle on an fd-based resource (/dev/bpf*, for instance) and then integrate the fd with your event loop?

    My moving-forward plan has been to maintain my application logic in standard C/C++, and use Cocoa/ObjC to build UI (and nothing else) on top of that. Since most good BSD code is asynchronous, and Cocoa/CoreFoundation lets you control the event loop at the "select()" level, this works fine for me.

  5. Cocoa all the way by petrilli · · Score: 5, Informative

    As someone who grew up around Macs, and then moved to NeXT, I'd have to say that if you know C, and understand OO principles (prefferably in the Smalltalk model, not C++), then you can pick up Objective-C in an afternoon. It's really just some extensions to C. Carbon is a great set of APIs if you've got 10 years of Toolbox experience on the Mac, but otherwise, it's much harder to learn the ins and outs.

    Cocoa, because of it's past with NeXTstep, has a lot of emphasis on rapid-prototyping and dynamicism. Lots of delegation, lots of easy stuff to do to get an effective solution. As for Java, I'd have to follow Aaron Hilldegrass' advice... don't. Not on the Mac, not unless your goal is cross-platform. If you're writing for the Mac, write in Objective-C, C++, or even REALbasic, but not Java. There's simply no good reason.

    Having written nearly identical programs many years ago for Mac, PC and NeXTstep, I'd say this. Mac and PC (Mac = traditional Toolbox on OS7.x) and Win32 are roughly equivelent to get the work done. Different, but one isn't necessarily easier. The NeXTstep app was implemented in 1/3 of the time, and that included me learning NeXTstep.

    1. Re:Cocoa all the way by BitGeek · · Score: 2

      If you're writing for the Mac, write in Objective-C, C++, or even REALbasic, but not Java. There's simply no good reason

      This is just a bit of bigotry.

      Java is an excellent language and it is very well supported under cocoa and on the Mac.

      There is a good reason: cross platform applications.

      While I like Objective-C over Java, those are the only two languages I'd recommend anyone write in-- get rid of RealBasic, C and C++ before you get rid of Java.

      Its common for people to take a macho attitude and pooh-pooh java, but this is just as silly as those who think real programmers write for the command line and pooh-pooh the gui.

      Java's future is assured, while objective-c's not. I prefer objective-C but telling someone there is no reason to use java is just bad advice.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    2. Re:Cocoa all the way by Frymaster · · Score: 2
      There is a good reason: cross platform applications.

      there are also a bajillion (jillion^2) libraries and class out there in java that can be super handy. just browse freshmeat and you may find that half yr backend is there for you already... and lgpl'd.

      real basic? heck, i'd choose applescript over that! you can build a pb/ib project in applescript very fast... and, once again, a jillion osaxen for you to plunder.... the drawback, of course, is speed in execution but if you need a prototype right now for that clueless vencap dude...

    3. Re:Cocoa all the way by BitGeek · · Score: 2


      They sure are. Which is not to say that Java is worthless, I'm sure for many applications Java is the preferred xplat strategy.

      And I look forward to the day when Apple or someone else makes Cocoa fully crossplatform.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    4. Re:Cocoa all the way by BitGeek · · Score: 2


      Can you provide some example of Apple using force to keep people from using GNUstep.

      Is suspect that is a false statement.

      (Remember, force has a specific meaning.)

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    5. Re:Cocoa all the way by BitGeek · · Score: 2


      Unfortunately, without knowing the details its hard to form an opinion. I googled but couldn't find anything linking lucas and jobs.

      Back when people were releasing aqua themes there was a lot of flack about how apple was being asinine in its threats, but it turned out that the people were using apple graphics in their themes and were violating apple copyrights directly.

      I find it hard to believe that someone built a webobjects clone and was intimidated out of releasing it-- anyone with the resources to produce such a project could afford a lawyer- webobjects is rather big.

      But the code is also apples copyrighted code. I don't know how you can make a clone without violating the code, even if you just reproduce the apis-- the apis are copyrighted as well.

      Openstep was an open standard, right? So that supports gnustep.

      I think cocoa developers aren't helping much because they are working on applications and are focused on that. PErsonally, I could help in the future, if Gnustep looks like its going to be viable (Which is something I simply haven't researched yet because it isn't the appropriate time to consider porting my app.)

      I think it would be a strategically good move for apple to move cocoa to windows, and I suspect any threats are probably due to apple having plans along those lines-- rather than apple not wanting such an entity to exist. But I could be wrong.

      I do think apple recognizes that what they have is a platform, they are not just a hardware company, and they do want the platform to be strong, but hey want it to be done in such a way that the mac is the first class citizen.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    6. Re:Cocoa all the way by BitGeek · · Score: 2



      Thanks for providing the references. The lucas guy seems a bit anti-apple, or at least confusing. He doesn't give the context-- I mean, did he write steve looking for sanction to recreate cocoa? If so, I can totally see steve saying "Don't use our intellectual property".

      That's not a threat. That's a request, and to follow it up with "nothing good can come from" is to back it up with concern. IF he had declared that Gnustep used Apple property that would be a different matter, but he didn't-- it seems clear to me that steve doesn't know, and his one line, terse email (which exactly fits the format of the one email I've gotten from him-- which was a response to one of my emails) is just warning people not to duplicate apple's stuff.

      Its no suprise he's so terse given how this "incident" is later characterized by you and others. I'm not flaming you, I just think you're over reacting. Actually, I think most people over react to everything apple does-- the faithful declare their faith betrayed, the haters use to to "prove" apple is the ultimate evil. More often than not these positions are taken not on things apple has actually DONE but things its rumored to do, or in this case, even less.

      Or, in shrot, its not clear that steve knows or thinks that gnustep was using apple IP, he was just warning them not to.

      To be honest the biggest thing that holds me back about using Gnustep (Though my primary application can't work there, I have a shareware app that could) is concern about the GPL and the GPL infecting my code making it impossible to sell.

      In theory there should be no risk of this, in practice there is.

      But I haven't researched it and I'll look into it when the time is right.

      Thanks for the discussion.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  6. Re:Don't use Cocoa by WoofLu · · Score: 4, Informative

    While it is true that the Carbon framework exists, it doesn't give you access to the full capabilities of Quartz/Aqua ..
    Carbon was designed to ease the porting of old OS9 apps to OSX, and AFAIK is meant to vanish.

    You'd better use Cocoa and learn ObjC .. If you have basic C skills, you should be able to learn it quickly.

    My two cents.

  7. Let the application dictate the language by ageitgey · · Score: 5, Insightful

    I think you are missing a vital point. You can't just say "I'm getting into coding, is X or Y better?"

    What is it exactly that you are writing? If you are writing a 3-D game, then the Java-Cocoa API is probably out. If you are porting your java-based massive application to Mac, than ObjC is probably out.

    Basically, choose the one that fits your application's needs. If you just want to mess around though, go with Java-Cocoa just because it's more immediate.

    --
    Uninnovate - Only the finest in engineering.
    1. Re:Let the application dictate the language by bnenning · · Score: 4, Informative
      Good advice in general, but regarding this point:


      If you are porting your java-based massive application to Mac, than ObjC is probably out.


      That's not necessarily the case. Cocoa can (mostly) transparently manipulate Java objects from Objective C. See here for more info.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
  8. Nothing wrong with Objective C by zulux · · Score: 5, Informative


    I love C++, templates, and think nothing of derfrrencing a pointer to a vector of objects that are stored in a crazy containter that I cobbeled together last night while high on cough syrup and mountain dew:

    However -

    Objective C kicks ass for GUI apps. It's easy to learn, and hides some of c's rough edges, and it's fast to compile. Make no mistake - nobody's going to code the next operatig system in it - but for GUI apps, take this good tool and run with it.

    --

    Moneyed corporations, non-working 'poor' and criminal prisoners are turning productive citizens into tax-slaves.

    1. Re:Nothing wrong with Objective C by Sahib! · · Score: 3, Insightful

      Make no mistake - nobody's going to code the next operatig (sic) system in [Objective C].



      Funny, that's just what Apple did.
      --

      I prayed about it, and God said, "Don't do it!" But I thought, "I know better."

    2. Re:Nothing wrong with Objective C by zulux · · Score: 2

      Funny, that's just what Apple did.


      Are you seriously claiming that the kernel of the OS is written in Objective C?

      If it is, please tell me, as I'd be quite impressed.

      AFAIK - the Kernel and Darwin are C, but hey, I'd like to know if otherwise.

      --

      Moneyed corporations, non-working 'poor' and criminal prisoners are turning productive citizens into tax-slaves.

    3. Re:Nothing wrong with Objective C by Ageless · · Score: 3, Interesting

      Unless I am sorely mistaken, the kernel that runs OSX is not written in ObjC. While a OS is more than a kernel (as RMS will gladly point out) the bits that talk to the hardware are the important ones and they are not ObjC.

    4. Re:Nothing wrong with Objective C by jkujawa · · Score: 2

      I've not downloaded the XNU sources to take a look, but I do know that OS X kernel extensions are generally written in C++, amazingly enough.

      I've done a bit of hacking on the keyboard driver to rearrange my TiBook's keyboard. There's a fairly elegant way to patch things, all object-oriented.

    5. Re:Nothing wrong with Objective C by BitGeek · · Score: 2

      While a OS is more than a kernel (as RMS will gladly point out)

      But an "Operating System" without a kernel is NOT an operating system, and that's why RMS doesn't get any respect anymore.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  9. Re:Best Framework for Mac OS X by akac · · Score: 2, Interesting

    Wrong. CLASSIC goes through a compat layer which is probably what you mean. Carbon and Cocoa are FULLY native on OS X. In fact, some Cocoa calls actually call Carbon API funcs. Even Apple developers use Carbon (iTunes) and mix Carbon and Cocoa in the same app.

  10. Mozilla by Fished · · Score: 5, Interesting
    I asked myself the same question a few months ago, and came to the conclusion that unless/until I have an application that requires a native API, I would do everything in Mozilla. In practice, this means a combination of XPCOM, XUL, RDF and javascript. It's like developing a really advanced web page, but you're not stuck in a browser framework.

    Several advantages:

    1. Easy cross platform. Your app will run on any platform Mozilla/Netscape run on.
    2. Easy development. Subjectively, development goes a lot faster than under a traditional framework.
    3. Something you probably already know: most people I know who program already know HTML and Javascript to some degree. From there, it's a very small leap to XUL and Javascript.
    The major disadvantage is that it will necessarily be a little slower than a custom coded native solution. But who cares for most apps? With recent Mozilla versions, it's more than fast enough. Anyway, my $0.02

    Patrick

    --
    "He who would learn astronomy, and other recondite arts, let him go elsewhere. " -- John Calvin, commenting on Genesis 1
    1. Re:Mozilla by Lao-Tzu · · Score: 5, Insightful

      As a co-author and currently sole developer of a Mozilla component application, I feel I'm qualified to voice an opinion on this. (MOOzilla being the application)

      Mozilla is really damn cool. You can do some amazing things by combining existing Mozilla code with your application. For example, yesterday I discovered a way to dump an entire MOO/MUD session into an HTML file by using a function in nsContentAreaUtils.js. This was funky. It was not, however, exactly what I wanted, so I now need to write similar code myself. The point is that Mozilla is great...

      But I can't see using it for anything that doesn't somehow relate to web browsing or networking. I know there have been efforts to do elaborate things like writting Office suites in Mozilla, but I don't think it's really feasible because the API availble through XPCOM is more geared towards this kind of web-based development. In MFC, for example, you have access to beautiful serialization and dynamic runtime creation and other nifty stuff that makes coding easy.

    2. Re:Mozilla by Fished · · Score: 5, Informative
      People responding seem to be missing a crucial point: I am not talking about a web application here. I am talking about using the mozilla framework to develop a local application. This is actually how Mozilla, including Mail, Messenger and Composer, is developed.

      If you haven't looked at it closely, don't knock it. Take a look at Creating Applications with Mozilla, from O'Reilly (of course.)

      --
      "He who would learn astronomy, and other recondite arts, let him go elsewhere. " -- John Calvin, commenting on Genesis 1
    3. Re:Mozilla by Jorrit · · Score: 2

      He is not talking about Mozilla The Browser. He is talking about Mozilla the Application Framework. Mozilla is more than just a browser. It is an entire application framework in which you can make applications that do NOT require or run in a browser.

      Greetings,

      --
      Project Manager of Crystal Space (http://www.crystalspace3d.org). Support CS at http://tinyurl.com/cb3x4
    4. Re:Mozilla by Frymaster · · Score: 2

      gtk+ apps do not run in the gimp. apply analogy where necessary.

    5. Re:Mozilla by Lao-Tzu · · Score: 3, Informative

      As a matter of fact...

      I have used MFC serialization in the most bizarre and difficult ways. In normal usage, adding new data into an existing set of serialized data is really, really easy. Just make sure that every object you serialize stores it's own version number when you write it it out. Increment the version number when you make a change to the serialization out, and pay attention to the version number when you're reading in the object.

      If you're creating a new version of your application, say re-writting the code from scratch, it is easy to write a set of classes that can read old product files and convert them into your new object structure. In fact, I've even written code that re-writes the runtime dynamic class names in a serialized data file just so it can be read in by a new generation piece of software.

      The ability to make compound documents with MFC is unbelievably sweet. I was part of a development team which created a single unified file format with a compound document architecture that was readable by 5 different pieces of software. Each piece of software had it's own slot in the compound document to write their own specific data out. I could derive my own classes off the base data classes, and they would be runtime created by the serialization when reading files. It was the sweetest little file system ever.

      Could it be done with XML? Yes. Would I prefer to work with XML? In principle, yes. Did I suggest that we use XML for a world-readable data export? Yes. But management would prefer to write up contracts with other companies to share data reading specs. And sure enough, that worked, and our products sold. So MFC serialization was sweet from a programmer's point of view, and was practical from management's point of view.

  11. Don't overlook REALbasic by dpbsmith · · Score: 4, Interesting

    I'm not sure whether it is suitable, but It does give access to the full API via "declare" statements.

    Don't reject it out of hand just because it isn't a "macho" language.

    I don't say it's the right environment for you. I do say you're being foolish if you don't at least take a look at it.

    You can make a very good evaluation because REALsoftwarelets you download a version that is complete, and comes with full documentation (it produces time-crippled applications that only work for thirty days).

    1. Re:Don't overlook REALbasic by Pahroza · · Score: 4, Funny

      How could someone possibly overlook RB? Have you seen the footprint of RB apps ? Blech. Cocoa is the way to go.

    2. Re:Don't overlook REALbasic by happystink · · Score: 2

      Expensive? It's only 99 bucks I think, as long as you only want to compile fo Mac platforms, not too shabby for what you get, and the IDE is fantastic comparedto VB.

      --

      sig:
      See the "..for smart people" banners Wired runs here? Look elsewhere guys.

    3. Re:Don't overlook REALbasic by happystink · · Score: 2

      I absolutely love RB for Mac apps, but the cross-compile stuff for windows is actually the source of many complaints. The marketing materials make it sound like you can write once for mac and then compile and run on Windows, but it isn't the case, you have to test on Windows very often while compiling or you'll run into big problems, especially without a windows debugger. This might change somewhat when REAL release the IDE for windows (!) sometime soon, as just announced (i forget the release date, i think early 2003).

      --

      sig:
      See the "..for smart people" banners Wired runs here? Look elsewhere guys.

    4. Re:Don't overlook REALbasic by BitGeek · · Score: 2


      It seems to me that Interface Builder has supplanted the need for languages like RealBasic and Hypercard et al.

      Interface builder and the appkit give you the quick and easy and powerful gui devleopment-- with more depth than realbasic, in the languages correct for professional development (Applescript, Obj-C, C, C++, Java).

      Realbasic seems great for learning (and thus may be appropriate for the person who started this topic) but not for professional development.

      If you need a quick app that can run on multiple platforms and are new to programming, then use RealBasic.

      IF you need multi-platforms and are an experienced programmer, use Java.

      IF you don't need multi-platform, use Objective-C.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
    5. Re:Don't overlook REALbasic by BitGeek · · Score: 2


      Actually, I do.

      No, hardcore programmers do not use Realbasic. Lower level programmers do. And that's fine. There are languages for every level... and as they progress, they can graduate to better tools.

      Nobody uses real basic to make large, complex powerful apps-- at least in terms of how those terms are used to reference other applciations. Even iApps would be very difficult to do in RealBasic.

      Nice as it is, if you're spending all your time dealing with the OS's API in C, then you might as well not be using Basic, right?

      Its great for what it does, and I don't begrudge it. I certainly enjoyed using it when I did a couple years ago for a quicky application that didn't need to do much.

      But if you want to be programming in the big leagues, you need to eventually migrate to Cocoa. (Take your time, its not like programming in basic is a waste of time.)

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  12. Re:Cocoa all the way - Mod Parent Up by Anonymous Coward · · Score: 5, Informative

    The above poster hit the nail on the head.

    Now, for my own two cents regarding Java+Cocoa: Don't do it. Some friends and I programmed a Jabber-based instant messenger in Java and Cocoa before OSX was officially released. Working with the beta frameworks was a nightmare, for one simple reason: Nobody else was doing anything with Java and Cocoa. To my knowledge, there are only a handful that work with it now.

    Like other posters have said, if you're just starting out on a platform, get over your fear of learning a new language. Objective C + Cocoa on OSX and C# + Windows Forms on WXP are the way to go. Also, Carbon, like MFC on Windows, is only really useful if you've got a lot of experience with the older Mac operating systems. There's a lot of cruft in there that's not really necessary and can be a pain to learn. You should find yourself developing a lot cleaner code a lot faster if you take the time to learn the newer tools available.

    Have fun. =)

    Obligatory resume (on topic because it lists the project!... riiight): http://www.cs.hmc.edu/~awooster/resume.htm

  13. Re:Don't use Cocoa by Twirlip+of+the+Mists · · Score: 3, Informative

    Um... no, "everybody else" doesn't use Carbon. The Carbon and Cocoa APIs are both used pretty widely. Older applications that were written for the pre-OS X Mac OS Toolbox are usually ported to straight Carbon, because it's easy on the developers. But new applications often use a combination of Carbon and Cocoa to implement different OS features.

    There was a session on this at this spring's developer conference. Even applications like TextEdit, which you'd assume would be pure Cocoa, considering the source, use a combination of Cocoa and Carbon code in them.

    Your generalization is wrong, sorry.

    --

    I write in my journal
  14. QT can be the right solution by statusbar · · Score: 3, Interesting
    If the app GUI is fairly simple, do the back end in a c++ library, and do the front end in Cocoa.

    But if you have a complex GUI, do take a look at QT/Mac from trolltech. It isn't FREE but it is quite good and allows your program to be portable between Mac/Linux/Windows.

    --jeff++

    --
    ipv6 is my vpn
    1. Re:QT can be the right solution by printman · · Score: 2

      So can FLTK, which also supports MacOS X and is a lot smaller.

      Mind you, the look-n-feel isn't identical like Qt's (as a free software project, we can't buy Aqua like Trolltech did), but the "plastic" scheme is similar enough.

      --
      I print, therefore I am.
  15. Cocoa / Obj-C by Sahib! · · Score: 5, Informative

    Definitely, learn Cocoa and Objective C if you can, just for the experience of realizing how much better it is that most of your other choices. With InterfaceBuilder, you can completely abstract your UI from the core of your code.

    Since you say you want to use the BSD layer, I suggest making a command-line version of this core code first (you can do this in C or C++), since this will be immediately more portable to other Unices. Once that is done, tying that code in with the UI you build in InterfaceBuilder is simple.

    Also, there are some pretty interesting native IPC libraries in Mach. If you don't mind your code being tied to Mach, you should check that out as well.

    Oh, did I mention that Apple's developer tools and documentation are free for download?

    --

    I prayed about it, and God said, "Don't do it!" But I thought, "I know better."

    1. Re:Cocoa / Obj-C by Sahib! · · Score: 2, Informative

      Also, O'Reilly's Building Cocoa Applications is excellent for the beginner, although I wish they would publish AppKit & Foundation in a Nutshell for a good off-line reference.


      Some other good references:


      --

      I prayed about it, and God said, "Don't do it!" But I thought, "I know better."

    2. Re:Cocoa / Obj-C by BitGeek · · Score: 3, Informative


      You can build tools in Objective-C, and GCC supports objective-C so objective-c itself should be pretty portable.

      Its just the cocoa frameworks that aren't. (Though there are people creating an open source version of it.)

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  16. Re:What about QT? by JohnG · · Score: 2

    Where in the blue hell did you hear that the developer license for Mac OS X costs money. The OS ships with developer tools.

  17. use Cocoa by d3xt3r · · Score: 5, Insightful
    As another person just getting into the OS X programming game, I was wondering the same thing. After looking around Apple's web site, and playing around with the different frameworks, it became apparent to me the Cocoa + Obj-C was the way to go.

    Objective C is easy to learn and can be intermixed in the same source files with C++ (and obviously C). It's one of those "use the right tools for the right job" things. The GUI is most easily programmed with Cocoa using Objective-C, but if there's a nice library you want to utilize that's written in C++, there's nothing stopping you from using it.

    Once you get comfortable with Objective-C, you realize that it is almost as easy to use as Java.

    Now for the alternatives:

    1. Java Swing on OS X: I have a database tool that I am creating as a cross platform app that is written entirely in Java using Swing. It runs beautifully on OS X and looks (almost out-of-the-box) like a native application. However, it is still slower than a native app. Users who expect a snappy GUI will be disappointed with a Java Swing app on OS X. While it performs admirably better on OS X than Windows or Linux, I'd stay away from Java Swing if cross-platform binary compatability is not a major requirement.
    2. Carbon: From what I could understand from Apple's web site, Carbon exits for one reason: to give developers a migration path from OS 9 to OS X. Carbon is a gateway API since Cocoa simply is unsupported on OS 9. It is obvious that Apple's go-forward plans are for Cocoa and Objective-C.
    3. Java and Interface Builder: I serisouly recommend not using this combination. You are going to force your Mac OS X only application to run in a Java VM without the cross-platform benefits of Java. This approach only seems logical if your backend is written Java and you want to create native GUIs on all platforms. I would stay away from this for an OS X only application.
  18. How about Qt/Mac by SilverSun · · Score: 3, Informative
    Qt/Mac from trolltech:


    Qt/Mac runs on Mac OS X. It uses the native Carbon API and does not require any special libraries.

    Qt/Mac can be used with Apple's Project Builder and the gcc compiler that is shipped with Mac OS X.


    I used gtk for a while and now switched to Qt. It is just wonderful. I can just recommend it to anyone who is willing to use C++/perl/pyth/ruby or so. It is pretty solid, and (wit exeption of the moc-precesser) very beautyfully designed. It is portable and available on Win/Unix/Linux/MacX.

    I ported some of our apps to Qt/Mac. Well, I recompiled the Qt stuff and the porting was related to other parts.

    Even though many people don't seem to realize, it Qt is fully GPL. The plain, good ol GPL. So if you project is GPL it is a very good choice. If not, you probably have the money to pay and it is still a good choice.

    Cheers, Peter
    --

    KdenLive/PIAVE - non-linear video editing

  19. Java Cocoa by BlueGecko · · Score: 5, Informative
    the Cocoa Java API [gets compiled to PPC binaries, lots of APIs available [think Google], but absolutely no decent documentation to be found]
    First, Java Cocoa is not native. Your application will still run on the Java VM. In my mind, it fills a very narrow purpose: it allows you to quickly turn a 100% Java application into an application that behaves exactly like a truly native OS X application and which can take advantage of the niceties that provides (for example, Services support, Sheets, Quartz, etc.). Secondly, I hear the complaint about the lack of Java API documentation all of the time, and I honestly don't understand it. Admitting that I've been working in NEXTSTEP and later OpenStep and then Cocoa for a very long time, Apple provides a detailed Java API reference that has class-for-class and method-for-method documentation exactly on par with the ObjC documentation and also provides a tutorial for Java developers that literally produces exactly the same application as the ObjC Cocoa tutorial. You need merely do both tutorials to see how exactly the two APIs line up. The only somewhat legitimate complaint is that Apple examples typically come as ObjC, but how hard is it, honestly, to figure out that [aSpellingChecker ignoreWord: @"bodacious" inSpellDocumentWithTag: myTag] becomes aSpellingChecker.ignoreWord("bodacious", myTag)? The rules for ObjC-to-Java conversion of APIs and code are very straight-forward:
    1. Any code relating to autorelease pools may be deleted and ignored (at least in basic code; by the time you need to make use of manual garbage collection in Java Cocoa (multithreaded code in the GUI being a big one), bluntly, you'll already know enough that it won't bother you)
    2. Java class names remain identical to their ObjC counterparts, and are in either com.apple.cocoa.foundation if they are part of the ObjC FoundationKit and part of com.apple.cocoa.application if they are part of the ObjC AppKit. (QuickTime is in its own API and really is a separate discussion, since "QuickTime for Java" has existed for several years now and is more a part of Carbon than Cocoa.)
    3. Method names for Java always consist of the first part of the ObjC identifier and always take the same parameters (except that NSStrings become java.lang.String). For example, (void)NSSpellChecker>>ignoreWord:(NSString *)inSpellDocumentWithTag:(int) becomes void NSSpellChecker.ignoreWord(String, int).


    All that said, I would strongly recommend you take the time to learn ObjC Cocoa. I use Java Cocoa when I am grafting a Cocoa UI onto Java code, but ObjC is still faster (though the gap is narrowing) and I still honestly believe the language is still a bit more productive due to things such as Categories, Smalltalk-style method names, and other things. If you know C and Java and are familiar with the concepts of reference-counted garbage collection, learning ObjC will take you the better part of a morning.
  20. Depends on the needs [/METOO] by Have+Blue · · Score: 3, Insightful

    If you are developing a GUI application from scratch and portability is not a concern, learn Cocoa. Interface Builder is hands down the best GUI-building tool in the industry.

    If you are already a C++ expert and have no desire/resources to learn a whole new language, or you want to use a more traditional toolkit that's easier to port, or you are porting an app written for Windows or OS 9, use Carbon. It's essentially identical to the Mac Toolbox, with a few types changed and memory hacks replaced with accessors.

    If portability is very important, use Java. OS X's implementation of the various Java GUI toolkits provides the Aqua interface automaticaly, as well.

    It is possible to use all of OS X's native APIs (Cocoa, Carbon, and Posix) in the same project, if you really must. The libraries are already quite interdependent and any potential conflicts are noted in the documentation (i.e. don't use NSThreads and pthreads at the same time).

  21. Re:What about QT? by statusbar · · Score: 2

    Yes.

    --jeff++

    --
    ipv6 is my vpn
  22. Re:What about QT? by SilverSun · · Score: 2, Informative
    quoting trolltech:


    Qt/Mac runs on Mac OS X. It uses the native Carbon API and does not require any special libraries.

    Qt/Mac can be used with Apple's Project Builder and the gcc compiler that is shipped with Mac OS X.


    It runns just fine. porting from Linux to Mac? No, just recompile.
    --

    KdenLive/PIAVE - non-linear video editing

  23. Don't discount Cocoa! by critic666 · · Score: 5, Insightful

    Truthfully, Objective-C takes ~2 hours to learn. In fact, check out the first chapter of my (needing-to-be-updated) tutorial, Using Objective-C++ on Mac OS X here for a comparison of ObjC to C++.

    I used to be a C++ programmer, and then I spent some time playing w/ Cocoa, learning how the system works, and now, if Cocoa goes away, I think I'll quit programming. Its simple elegance and power is astounding, and freeze-dried objects in the NIBs are just cool. Just play w/ some of the tutorials (e.g. currency converter) before you discount it.

    However, Cocoa-Java is kind of worthless. It's a kludge, and some of Cocoa's coolness comes from the weak-typing (id is slick--sort of a void* you can send messages to). Take a look @ cocoadevcentral, too.

    Carbon, though, is klunky by comparison. Programming for that is just like programming for Windows/Linux...it's an API, and you can do nifty stuff, but it's not slick. Cocoa is slick. 'nuff said :)

    Josh

  24. Re:Java -- no question about it. by Twirlip+of+the+Mists · · Score: 2

    Yeah, after all, there's no reason to write good software when you can just write portable software.

    Least-common-denominator approaches are good for nothing-- except grade-school arithmetic exercises.

    --

    I write in my journal
  25. Re:Best Framework for Mac OS X by malice · · Score: 4, Informative
    You clearly have no clue what you're talking about. Many parts of Cocoa are built on top of Carbon -- there is no "emulation layer" for Carbon calls, nor are carbon applications inherently slower than Cocoa applications.

    Carbon and Cocoa are merely two APIs that allow you to do the same thing. Carbon is procedural, Cocoa is object oriented.

    Many things are easier to prototype and get your initial code up and running in Cocoa, but like an OO framework, you must design your object hierarchy well ahead of time.

    There is also a rather serious learning curve for Cocoa, and if you decide to go with Cocoa over Carbon, you've essentially written off any xplat possibilities.

    Most of the major applications for Mac OS X are written in Carbon, and will continue to be. Cocoa is a very cool OO framework, but it isn't right for every project, and the misinformation you're spreading is doing no one any good.

  26. Re:Speaking from experience... by lemkebeth · · Score: 2

    You wrote:

    Cocoa is alright, except that it uses Objective C. Objective C is a bastard child of C and C++, and it doesn't really mesh too well.
    C++?

    Objective-C is an extensions to C (like C++) but, for the extensions draws on Smalltalk for inspiration.

    In addition you wrote:

    Now Nextstep, that's a whole different ballgame. ;)

    Cocoa is an updated NeXT API.

  27. Use Cocoa by Anonymous Coward · · Score: 3, Insightful
    Let's get this straight: you want to learn an entire framework, and your primary complaint is about learning a minor extension to C?.

    Objective-C is a small, elegant object-oriented version of C. It's very easy to learn, easy to document, and easy to modify. Compared to the size of Carbon and Cocoa, this is absolutely the least important part of your framework-learning experience.

    So here's the deal. Cocoa is an elegant, brilliant, clean and simple framework derived from the (rightly praised) NeXTSTEP/OpenStep libraries. Carbon is an evily patched hulking pile of OS9-compatible goo. The difference between these two libraries could not be more stark.

    Apple's proclamations otherwise (made to make Adobe and Microsoft happy), Carbon exists for exactly one purpose: as a porting library for legacy code. The nastiness of Carbon lends some insight into the hideousness of developing for OS9, one of the reasons Apple simply could not get the Copeland project working.

    Use Cocoa.

  28. Re:I recommend . . . by lemkebeth · · Score: 5, Insightful

    You wrote:

    Truth hurts, doesn't it, fanboys? If it isn't true, explain to me why what are free utilities for Windows machines are $20-$30 extortionware for the Mac.

    :stares in disbelief:

    um actually, stuff that is Free under the MacOS/MacOS X costs money on Windows for the same thing from another developer.

    I use Windows at work and getting the same function as provided by a freeware Mac app costs money on Windows.

    Mind you there are always exceptions to the rule.

    My theory is that all Windows developers code fro money while some developers on other platforms code to give something back or just for the love of the platform (be it Linux, BSD, Mac, or something else).

  29. Re:Speaking from experience... by Twirlip+of+the+Mists · · Score: 4, Insightful

    Cocoa is alright, except that it uses Objective C. Objective C is a bastard child of C and C++, and it doesn't really mesh too well.

    Spoken like a true C++ programmer. Objective C is not a "bastard child of C and C++;" in fact, Objective C and C++ share nothing in common at all except for the C language, of which both are supersets.

    Objective C is a much simpler language than C++. Oft-troublesome C++ features like templates, overloading, multiple inheritance, virtual functions, and "friends" aren't implemented in Objective C. Mastering C++ can take years, while mastering Objective C is a task for a couple of afternoons.

    Now Nextstep, that's a whole different ballgame. ;)

    No, it's not. Cocoa is essentially NextStep.

    --

    I write in my journal
  30. Comment removed by account_deleted · · Score: 5, Informative

    Comment removed based on user account deletion

  31. Might want to read this by Mindcrym · · Score: 4, Informative

    Check out the article Introduction To and Experiences With Mac Cocoa from Kuro5hin.

  32. Re:The Master Of C by oh2 · · Score: 4, Funny

    I agree. Mastering C takes at least three days, four if you need to go to the bathroom.

    --

    Now the world has gone to bed, Darkness won't engulf my head, I can see by infra-red, How I hate the night.

  33. Re:native != better by Twirlip+of+the+Mists · · Score: 5, Insightful

    A well-designed application will separate logic from presentation, at least to some extent. Because the Cocoa API is most easily called from Objective C, programmers are free to write their logic in straight ANSI C, and use Cocoa user interfaces for the presentation layer.

    The same is true of Java; in fact, many programmers may prefer this. You can write all your application logic in pure Java, and use Cocoa/Java code for the user interface. If the need ever arises to implement a different user interface toolkit, you can just replace the Cocoa/Java code-- which will probably be only a small fraction of your total code base-- with Swing/Java or whatever you please.

    The important thing to remember, here, is that, on the Mac platform, native GUI applications are always-- always-- superior to non-native GUI applications. If you don't use native APIs for the interface, you're crippling yourself from the outset.

    --

    I write in my journal
  34. Only on X11 by yerricde · · Score: 2, Informative

    Qt is fully GPL.

    Only when compiling for the X11 target, which requires Mac users to install XDarwin and Windows users to install Cygwin and XFree86.

    --
    Will I retire or break 10K?
  35. Why not wxWindows? by kollivier · · Score: 3, Insightful

    wxWindows is a cross-platform GUI toolkit which emulates the native look n feel of the platform it is running on. It's written in C/C++ and runs on Windows, Mac, and Linux. The url is http://www.wxwindows.org. It gives you the cross-platform benefits of Java, as well as access to the underlying BSD layer.

    I have started using wxPython (Python bindings for wxWindows) as my primary development platform, and am quite happy with it. It enables me to develop my application on OS X, even though my primary target audience is using Windows. =)

    1. Re:Why not wxWindows? by Anonymous Coward · · Score: 2, Informative

      It's doesn't emulate at all. It actually calls the carbon api, they're just adding a portability layer on top that makes sense for all platforms.

      I've been using wxWindows for linux and windows for about a year now, writing diagnostic tools for our manufacturing plant (some very complex). I've needed to get down and dirty with process monitoring, threads, and IPC, and I can tell you, that wxWindows is great. I was able to write once in linux (my prefered platform at work) and just compiled it on windows.

      As for the mac, I would imagine it's similar, but I don't have the experiece yet (just got my mac a month ago).

      And the best part is, it's free.

  36. Re:The Master Of C by Twirlip+of+the+Mists · · Score: 2

    Uhhh... dude, are we talking about the same thing? The C programming language is incredibly simple. Hell, it only has 32 reserved words! (Plus or minus a few depending on your compiler of choice.) Any reasonably intelligent person who already understands programming concepts like functions and variables should be able to learn the entire C language in a day, maybe two.

    Now, if you're talking about the C standard library, or the various POSIX APIs, that's a different story. The various standard C APIs are numerous and bewildering. But the same can be said of any language/API combination.

    --

    I write in my journal
  37. Fink? by yerricde · · Score: 2, Informative

    If it isn't true, explain to me why what are free utilities for Windows machines are $20-$30 extortionware for the Mac.

    Which utilities that don't already have equivalents in Fink (i.e. d*b**n gnu/mac os x) are you talking about?

    --
    Will I retire or break 10K?
  38. Re:What about QT? by JohnG · · Score: 2

    Oh, OK, I'm an idiot! Apologies to the original poster! :)

  39. Re:Best Framework for Mac OS X by Twirlip+of+the+Mists · · Score: 2

    Many things are easier to prototype and get your initial code up and running in Cocoa, but like an OO framework, you must design your object hierarchy well ahead of time.

    Of course you're right-- who would know better, right?-- but you'd be surprised how many nontrivial Cocoa programs out there have only one class: Controller. They're basically straight procedural C programs with the Controller class in place of the main() function.

    --

    I write in my journal
  40. Here's how I see it by Dr.+Awktagon · · Score: 5, Insightful

    I just started programming Mac OS X (I did a little Mac programming in the System 7 days and HATED it, since I was programming Unix at the time). But OS X is great.

    I'm focusing on Cocoa myself, but here are some data points for you:

    Objective-C is a lovely language. I looked it at back in the NeXT days and thought "cute, but it'll disappear and be replaced by a better version of C++". Well, Objective-C is still here, and C++ never got any "better". So you ought to learn Objective-C, it's very much like Smalltalk mixed with C, very elegant. I might start writing Linux and BSD programs in it. Also, it interfaces easily with the BSD side of Mac OS X. For instance, you want math libraries? You just use the standard math.h stuff! That's nice.

    Don't use the Java Cocoa stuff. It STINKS. I think they just added it for a "bullet point". The documentation isn't as complete. It's very slow. Objective-C is a nicer language anyway, since it is dynamic. With Java you have to use a lot of reflection hacks to get the same results, not nearly as elegant.

    Java DOES NOT (correct me if I'm wrong) compile to native code with ProjectBuilder. ProjectBuilder simply wraps a launcher around the java bytecode. If you drill down into the application package, you'll find the regular jar files.

    The use of the Java Swing (non-Cocoa) stuff is simply to get your existing Java apps up and running fast. It took me just a few minutes to turn a Java program I wrote on Linux with Forte into a double-clickable (but slow) Mac OS application. Don't bother using this for new stuff. Your program might LOOK like an Aqua app, but it's really Swing.

    Carbon let's you use C/C++. But it isn't a "compatibility layer" .. it's not obsolete or "going away". It's simply a cleaned-up version of the original Mac API. So if you choose this route, don't feel like you'll have to stop using it one day or something. I think Apple will support it indefinitely, alongside Cocoa.

    Cocoa is a little slower than Carbon, because Objective-C is a dynamic language, and it has to decide things at run-time (like, say, Perl). Not a big deal these days, but raw speed is not a selling point of Cocoa GUIs.

    AppleScript Studio: if you like applescript, you can write full applications in it. Just like on Linux you might want to throw together a simple Python script, etc., with a GUI. It doesn't hurt to learn applescript, especially if your Cocoa apps will be scriptable.

    Interface Builder is just soil-your-pants awesome and let's you create, instantiate, and hook together non-GUI objects, right along with GUI objects. Also note that IB actually creates the GUI and other objects and serializes them to a disk file. It doesn't create any code or do any other tricks. And XML is used throughout for properties, etc..

    So IMO your best choices are: Cocoa/Objective-C, or Carbon/C (or C++, blech). And I think everyone should learn Objective-C .. I'd like to see it used more for non-Mac stuff too.

    Everything you need, including books and tutorials, comes on the Developer CD. Go through the Cocoa/ObjC tutorial.

    Also note that if you sign up for the Apple Developer stuff, you have to agree to some pretty disgusting terms, including giving Apple the right to search your place of business on 24 hours notice. I shit you not.

  41. By default, I recommend Cocoa / Objective-C by Anonymous Coward · · Score: 2, Interesting

    Mac users care a great deal about nativity and the app behaving like a good Mac OS X app. (Otherwise we could be using something cheaper and less elegant, right?) Cocoa is the most native thing on OS X. If you use Cocoa, you have an immediate advantage over competitors who use Swing or Carbon.

    With Carbon you have to implement a lot of stuff Cocoa gives you for free. I still haven't seen a non-sample-code Carbon app with proper Unicode support. Then there are things that Swing apps just can't do. (And don't believe Sun's pluggable talk. You can't just plug in Aquaness without designing for Aqua.)

    The Cocoa Java API feels like an Objective-C API anyway, so you might just as well learn Objective-C unless you already have Java back end code.

    Objective-C is way cooler than C++.

  42. Re:The Master Of C by Jorrit · · Score: 5, Informative

    The difficulty of learning a language has little to do with the number of keywords it has. It is more a matter of how those keywords (and operators) are used together to enable programmers to do things. C is not that hard but in some cases it can get complex compared to other languages (even if those other languages have more keywords). Pointer arithmetic is one area in which many people struggle. Especially if you come from a programming language (like Java, ...) which doesn't have that.

    C++ adds a number of keywords to the C language but not that much. Even so it is a highly complex language with lots of special constructs and exceptions.

    Greetings,

    --
    Project Manager of Crystal Space (http://www.crystalspace3d.org). Support CS at http://tinyurl.com/cb3x4
  43. what is wrong with objective-c? by the_2nd_coming · · Score: 3, Interesting

    you can still compile C code with an objective-c compiler, infact, Objective-C isw a true supper set of OO features appened to C, so would you then not be able to use Coaca with C code as long as you compile into an objective c binary?

    --



    I am the Alpha and the Omega-3
  44. Along the lines of the myriad calls to use Qt... by gnuadam · · Score: 2, Informative

    ...I'd also suggest taking a look at wxWindows. They're open source, the results look very mac native (they have screenshots), and it seems to be very portable....having libraries for windows, most *nux (using GTK, Xt, or Motif), and macs, and maybe a few others. Oh, and it's c++ for those with an objective-c phobia, like me :)

    I honestly don't know why more isn't done with this framework outside of those crazy python people. It looks good, and is completely free (both as in beer and speech), unlike Qt (not trolling, just stating a fact!)

    --
    You say :wq, I say ZZ. Why can't we all just get along?
  45. Re:Don't use Cocoa by bnenning · · Score: 4, Informative

    Um, no. Carbon is a transitional API, designed to make it easy for OS 9 apps to migrate to OS X. It's not bad, but it's procedural and requires you do to tons of stuff by hand that Cocoa gives you for free. If you're writing a new Mac OS X app, there's very little reason to use Carbon.

    --
    How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
  46. A, B, C, or NONE OF THE ABOVE. Not 'D'. by tqbf · · Score: 2
    He didn't give Carbon as an option.

    If you follow a sane strategy, and don't use Objective C OR Carbon C++ (and its associated event and I/O management cruft) to handle your application logic, I don't see what the advantage to Carbon is.

    That is to say, if all your application logic is straight C++, and you're only doing UI and event integration in "Native" MacOS, why would you choose to use Carbon (which seems approximately as complex as Win32) instead of Cocoa?

    1. Re:A, B, C, or NONE OF THE ABOVE. Not 'D'. by tqbf · · Score: 2
      Why is Carbon better for porting C/C++ applications from other platforms over? C/C++ works just as well under Cocoa alongside Objective C as it does in Carbon. Moreover, coming from another platform, you're still going to wind up porting your UI code to a new toolkit. What makes you think the low level toolkit is easier to port to than the high level one?

      Mach isn't a NeXT idea; it's a CMU idea. NeXT and Darwin aren't the only Mach operating systems.

    2. Re:A, B, C, or NONE OF THE ABOVE. Not 'D'. by BitGeek · · Score: 2

      In particular, Carbon apps start noticeably faster than Cocoa apps, period.

      This, and other comments like it are convincing me that there's an axiom:

      "Anyone who ends a sentence with the word "period" doesn't know what they are talking about, and the sentence in question is absolutely false, period."

      Really. In my experience, all my carbon apps are slow to launch and Cocoa apps are sometimes slow to launch and sometimes fast to launch.

      MY cocoa apps are very fast to launch because I designed them correctly. If you lump everything into one nib file your cocoa app can be slow to launch, but that is a problem with the programmer, not with the design of the app.

      I'm not sure what causes Carbon apps to be so slow to launch, but then, I'm not claiming an absolute truth- just what I've observed. Period.

      --
      Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  47. Re:Don't use Cocoa by Twirlip+of+the+Mists · · Score: 2

    Way, way off-topic, but your sig is wrong. You wrote:

    "It's fuzzy-minded liberal thinking like that that gets you eaten." - Principal Snyder

    The actual quote-- which is priceless-- is, "That's the sort of fuzzy-headed liberal thinking that leads to being eaten."

    Just FYI. Please don't tell anybody that I watch "Buffy."

    --

    I write in my journal
  48. suck it up, learn Obj-C by relay_mod · · Score: 2, Insightful

    First of all, there's a "fourth" alternative that you did not mention: Carbon. It's a C API that represents a subset of the old Mac OS 9 APIs. It will give you access to Cocoa and CoreGraphics goodies while also giving you access to all of the wonderful Mach and BSD APIs.

    However, Carbon is no fun, IMHO. It's just not as easy to work with as something like Cocoa or Swing.

    Second, why do you say that Cocoa/Java is not well documented? Just look at developer.apple.com and read all about it... Besides, all Obj-C Cocoa APIs have equivalents in Cocoa/Java. So it shouldn't be that hard.

    But, why use Java? Maybe you like it, in which case, go for it... But I think that if you have C and C++ experience you'll find Objective-C to be much more robust for Mac programming, simply because: 1) you can learn it quickly if you already know C/C++, and 2) you get a well thought-out API (Cocoa, formerly NeXT's AppKit) with access (both via Objective-C and via libc and other C APIs) to Mach, BSD, and Mac OS X specific goodies.

    And, for the love of all that is good, pure, and holy, don't use Swing. It's disgusting. Someone needs to beat it into the ground and start from scratch. The only reason that I would see for using it (and, granted, it's a good reason) is for portability... But in that case, I highly recommend Qt (www.trolltech.com). It works nicely on Windows, Linux, and Mac OS X... Only problem is it isn't necessarily free. =(

    Personally, I learned Objective-C in a couple of evenings after reading Apple's (formerly NeXT's) excellent book on Objective-C. It's available for download in PDF format from developer.apple.com.

    So I say go for that, I'm sure you'll be impressed with the results you get.

  49. Re:WRONG - Carbon provides this too! by Tokerat · · Score: 2

    Exactly, if you are already familliar with Carbon-stype API (read: MacOS 9), it is a good way to go and will get anything done which Cocoa would do, although certian issues won't have quite as suave a solution as Cocoa would provide.

    Apple was sure to optimize the Carbon APIs not only for compatability but because sometimes your project doesn't need to be Object-Oriented Cocoa style, Carbon will work just fine and just as clean. I am starting to think that some people (who aren't "in the know" with the Mac) confuse the Carbon set of APIs as analogous to running in Classic mode, which is entirely not true.

    --
    CAn'T CompreHend SARcaSm?
  50. Re:Java -- no question about it. by Twirlip+of+the+Mists · · Score: 3, Interesting

    Who's to say that you can't write good software in Java?

    Absolutely you can write good software in Java. I've seen it done, although I admit that I don't have the mad Java skillz to do it much myself.

    But you can't write good software with Swing. Swing may be a fine user interface toolkit on UNIX, where there are no superior alternatives, but on a Mac, a Swing application-- unless it's specifically tweaked to use the Aqua look and feel-- is kind of an embarrassment. Java Swing apps run on OS X just fine, but they're unpleasant to use.

    this post just makes me angry

    I'm sorry. You get angry at strange things. Must have missed my post in another discussion about how disappointed I am that Mozilla is irrelevant; that post made lots of people angry.

    --

    I write in my journal
  51. Re:Speaking from experience... by Twirlip+of+the+Mists · · Score: 2

    I don't usually comment on this sort of thing, but how could my post have been interpreted as flamebait? That's just confusing to me. Can anybody shed some light on this? Maybe I was offensive in a way that I'm just not seeing.

    --

    I write in my journal
  52. Mozilla != MacOS by tqbf · · Score: 2
    You could develop for Mozilla (and, with some effort, wind up with something that would work in the COM/ATL/XYZ equivalent environment that Windows provides). You might even be productive in that environment. But you're not developing and OS X application, and you shouldn't kid yourself.

    Mozilla/XUL on OS X is hard to take. It reimplements the entire UI toolkit (and what it comes up with looks nothing like the Apple guidelines). It's also incredibly slow (as in, KEYSTROKE LAG in text inputs!). And unlike in Win32, where IE can hide in the background and leave you with something that looks like an application, in OS X you'll be literally running your application through the nightmarishly bloated Mozilla environment.

    You're also kidding yourself if you think you'll wind up with something cross-platform. XPCOM doesn't magically make a C library compiled PPC Mach-O work on x86 ELF.

    Don't get me wrong; I like the COM/DOM/C++ environment and have worked on teams that used it successfully. But right now I think it's mostly applicable to dynamic web applications (people put up with more in client/server situations).

  53. Re:Speaking from experience... by Twirlip+of+the+Mists · · Score: 2

    Yes, they most definitely are. But for programmers with less experience-- say, the 5-year programmer instead of the 10-year programmer-- features like multiple inheritance or overloading can cause more problems that they solve. A complex class hierarchy with templated classes, lots of cross-inheritance, and overloading happening all over the place can be a real bitch to maintain.

    --

    I write in my journal
  54. Re:Don't use Cocoa by Twirlip+of+the+Mists · · Score: 2

    ACK! Of course, you're right. Who can forget Armin Shimmerman saying "wooly-headed liberal thinking!" Thanks for correcting me.

    --

    I write in my journal
  55. Cocoa by Anonymous Coward · · Score: 2, Interesting

    Cocoa is the framework of choice for most OSX programming. The mechanics and syntax of Objective-C is easy to learn--you can pick it up in a couple days. (Making full use of what it provides you is a different matter--it can take months to stop thinking like a C++ programmer and take full advantage of the dynamicism of the language.) If you're doing any GUI programming this is the framework you should use.

    Carbon exists to provide a way for old codebases to run on OSX. Consider it only if you're already familiar with pre-OSX mac programming, and then only if you have a big, old codebase.

    Java is useful for cross-platform server apps.

  56. Re:Don't use Cocoa by jimbolaya · · Score: 4, Informative
    Not quite. Both Cocoa and Carbon libraries call a lower-level C library called Core Foundation. Both Carbon and Cocoa could be roughly considered wrappers around Core Foundation, but I wouldn't call Cocoa a wrapper around Carbon.

    There may be exceptions, however. Perhaps, for instance, the Cocoa QuickTime classes are wrappers around the Carbon classes. Since I haven't done any QT programming at all, I'm merely speculating.

    --

    There ain't no rules here; we're trying to accomplish something.

  57. If you had done the least amount of research... by greygent · · Score: 2

    If you had done the least bit of research before asking this question, you'd already know to pick Cocoa.

    Carbon is old, and fastly deprecating.

    Cocoa is "the" API to use, and you can intermix C and C++ code to your heart's content with it (eg. BSD code)

    Cocoa/Java is considered crap, even by Apple (see Apple dev docs), and is not ready for prime-time.

    Pure Java is alright, but doesn't give you access to BSD stuff.

    In short: duh.

  58. You're sorely mistaken by greygent · · Score: 2

    Yes, they are, fucking look at the kernel source before you post drivel like this. Various parts of the kernel are coded in C, C++, and Objective-C++

  59. Re:JDK 1.4 by Tim+Ward · · Score: 2

    OK, in 1.4 you can, at least, get a list of the interfaces and IP addresses on the machine, but to get the subnet mask and default gateway for each interface you have to revert to something platform specific. ICMP? Forget it. Unicasting to a known MAC address when the destination device doesn't have an IP address yet? Forget it. Other low level protocols for which raw socket access might be useful? Forget it.

    Sockets and threads; the spec says that if you have one thread waiting to receive on a socket you can cause it to stop waiting, and throw an exception, by closing the socket in another thread.

    Now, if you do this to the native socket API you get difference results on different platforms. I may not recall all the details correctly but it's something like: it works on Windows; on Linux it works for UDP sockets but not TCP sockets; on Solaris it doesn't work reliably for either.

    Fine, so the whole point of Java is portability, right, so the JVM somehow works round these differences in the underlying socket API, right?

    'Fraid not quite right - there are some bugs listed against 1.4 which suggest to me that the JVM implementation of closing a socket in one thread whilst another thread is waiting on some sort of receive is not done cleverly at all, it just calls the native socket API and passes the differences up to the application, which is therefore not portable.

    [I haven't done all the expermiments so some of the above is probably wrong in detail - I'd be grateful for any corrections from anyone with first hand experience.]

    [So in fact the portability of Java is no better, in this respect, than writing the same thing in C direct to the socket API, except that it's probably harder to come up with nasty fudge workarounds in Java.]

  60. many choices, choose one which fits your style by tim1724 · · Score: 5, Insightful

    There are two separate issues here: which GUI toolkit to use, and whch language to use. First, choose the GUI toolkit, and then choose one of the programming languages which can be used with that toolkit.

    1. Choose a GUI toolkit
      • Carbon - a cleaned-up version of the original Macintosh Toolbox. It's big and complicated (as should be expected for something which has been evolving over 18 years) and may be somewhat annoying if you don't have previous Mac Toolbox experience.
      • Cocoa - the OpenStep API with a few new features. Clean and simple object-oriented interface designed around the Objective C language. Good for rapid development of GUIs.
      • Swing - Apple provides a Mac OS X implementation of Swing. With a little work, you can make a Swing program look almost native. (But not quite.. a few things end up looking or behaving slightly wrong.) A good choice if you want cross-platform Java code.
      • QT - The Mac OS X version is based on Carbon, so it should look like any native program. A good choice for cross-platform portability.
      • Tk - as in Tcl/Tk .. there's a Carbon port of Tk, but I've had some problems with it.
      • other cross-platform toolkits - There are a few others (wxWindows, for exmaple) but I don't know much about them. As far as I know, they're all built on top of Carbon.
      • Mac-specific libraries built on top of Carbon - things like PowerPlant (a C++ library from Metrowerks) make dealing with Carbon a bit easier.
    2. Choose a language

      Most of the toolkits support multiple languages.

      • Carbon: It's intended to be used from C (although you'll still find a few remnants of its Pascal roots) so it's not object oriented. You can use it from C, C++ (directly or via object-oriented layers like PowerPlant), RealBASIC, and probably a few others.
      • Cocoa: It was designed around the Objective C language, but Apple also provides Java bindings. Java isn't a particularly good fit for Cocoa (better than C++ would be, though) so I don't recommend it. There is a Perl binding called CamelBones which works rather well (Perl and Cocoa go together very well in my opinion). I think Python and Ruby bindings may be available as well.

    For new development, I'd strongly recommend using Cocoa with Objective C. Don't be afraid of Objective C! It's a very simple extension to plain old ANSI C. The additional syntax is minimal (unlike C++) and most of the code you write will be plain old C. Once you've learned Cocoa using Objective C, you may want to use it in Perl via CamelBones. But I'd strongly recommend using Objective C to learn Cocoa, otherwise you won't understand a lot of the reasons why things work the way they do. Don't use Cocoa with Java, unless you don't know C. And even then I'd recommand learning C so you can use Cocoa with ObjC.

    If you want a plain old non-OO API, Carbon isn't all that bad. You'll need to get a good reference, as there are a lot of functions and types to learn about. (Whereas Cocoa is predictable enough that you can usually guess method names!) Or you can use one of the C++-based wrappers such as QT or PowerPlant.

    --
    -- Tim Buchheim
  61. There *is* a good reason for java cocoa by pHDNgell · · Score: 2, Interesting

    I also thought that it was pointless to create a native application using java, but then, out of necessity, that's exactly what my first OS X application ended up being.

    I have a web-based app that I wanted to create a non-web GUI for (involved various file uploads and stuff that could more easily be handled via a native GUI). The server supports XML-RPC, but at the time, I didn't have an XML-RPC framework I could use from Objective C. However, I did have a fully functional commandline app that did it that I'd written in java.

    So, I just fired up project builder, told it I was writing a java cocoa app, and spent a while getting the UI the way I wanted it, then just plugged in a couple methods to the controller to call the existing code.

    Because this was my first OS X application, it was a learning experience as far as picking up the cocoa concepts and stuff, but it only took a day of me being home sick (and I felt pretty crappy, so I wasn't working all that fast).

    The time I spent learning cocoa concepts was not wasted at all. I figured out how to build frameworks and get them into my application, so I had the stuff I needed to go full objective C. I *copied* the UI I'd already made into a new project, and pasted a lot of the code straight from the java app to the objective C app (mostly controller stuff). Of course, I had to convert the java cocoa calls to objc, but for the most part, that was it.

    Moral of the story: If you intend to write a native OS X app, and you don't have all the parts you need in objc, but you do have most of it in java, do it in java! It was a good proof-of-concept anyway. :)

    --
    -- The world is watching America, and America is watching TV.
  62. Re:The Master Of C by orthogonal · · Score: 5, Informative

    Re C and pointers:

    Understanding pointers is a challenge for many C newbies. It helps if you remember that a pointer is just a number, usually a variable but sometimes a constant, which represents an address in memory. It helps even more if you can remember that that address in memory is just an offset from the start of the memory (note this only works on architectures with flat addressing; it gets a bit hairier on, say, DOS).

    Since C is a pass by value language, passing a pointer (or anything else) means passing a copy of a value. In the case of a pointer, that means a copy of the address, so now both the caller and the called function know that some memory exists, and can (in the abscence of const) modify it.

    Since the pointer is just a number, it can be added to. Adding to a pointer actually means that the address is incremented by the amount of the addition times the size of the thing being pointed to. In other words, the compiler takes some pains to ensure one is alsays pointing to the start of what should be an object, and not within the guts of the object. So if I declare a a pointer to a 2 byte sized object, adding one to the pointer will point me to the next two byte oject in memory, and not to the second byte of the first object.

    Naturally, the programmer must allocate the memory to be pointed to. The pointer is merely an address, it's not the memory being addressed. Declaring a pointer gives the programmer a place to write the address down; it does not create the mmemory: the fucntion call malloc ("memory allocate" ) "creates" the memory.

    I beleieve the OP noted he came from an assembly background, which means that he's used pointers (untyped ones at that) so it may be less of a challenge.

    The other C pitfalls for the unwary are the declaration structure, and (related) to this, the way arrays are handled. Several primers exist on decoding declarartion syntax; in a nutshell, declarations should be read from the inside out, left to right until a right parenthesis forces reading right to left. The declarartion:

    int ( *f )( char ) ;
    is read "f is a pointer to a function taking a char argument and returning an int.

    In C, arrays are not first class objects, and so when passed to functions they "decay" to pointers to the first element of the array. An array name can be treated like a pointer, and indexing into an array is defined by the language to be exactly equivalent to dereferencing an array plus the index:
    Given
    char array[ 4 ] ;
    array[ 0 ] is just *( array + 0 ); and array[ 3 ] is just *( array + 3 ). array[ 4 ] is *( array + 4 ) and is an illegal (well, undefined) dereferencing of the "element" one past the end of the array.

    I have said too much for a post, so I'll end now. The point is, as long as one remembers a few key ideas: pass by value, pointers are numbers for addresses, and declarations need to be read inside-out, C is rather straigtforward.

  63. Cocoa by Tar-Palantir · · Score: 2, Informative

    I have to tell you, I LOVE Cocoa/Objective-C. There are a million benefits to both - Cocoa ( in combination with Interface Builder) gives you fantastically easy GUI creation and control.
    The Objective-C language has got to be the coolest language I have ever used. I love being able to add a method like -encryptWithKey: to the NSData class without subclassing it.
    The automatic memory management with -retain and -autorelease is great, too. Almost never have to worry about it.
    Besides all this, you can use straight ANSI C code (and C++, too, in Objective-C++) right in the same source file.
    In short, give Cocoa a look. If it doesn't meet your needs, try using one of the other solutions. The only thing I can come up with where you would need to not employ Cocoa is if you desire easy portability.

  64. my experience by g4dget · · Score: 4, Insightful
    Unfortunately, there really is no ideal solution.

    I would not be scared of learning Objective-C--it is a very simple language and easy to learn, and its object model is very convenient. But in other ways, Cocoa using Objective-C is a somewhat outdated programming environment: the GUI design tools were great in the 1980's, but they are pretty dated by today's standards. And resource management in Objective-C and Cocoa is a lot more work and a lot more error prone than in Java or C++. On the plus side, Cocoa is what Apple really wants you to use, and that's where they seem to be putting a lot of their efforts.

    Cocoa using Java is probably in a certain sense "the best" programming environment for the Mac: it's modern, easy to develop in, and mostly safe. It's also pretty well supported. But it retains many of the warts of the Cocoa APIs and, as you observed, is not all that well documented.

    With either Cocoa-based solution, you also have to ask yourself whether you believe that Cocoa has a future and whether it's worth learning it. I don't see much of a future for Cocoa, at least in its current form. Apple has made no moves to standardize it or open it up, so it is Mac only. Even if Apple pushed for more widespread adoption, they'd have to make big changes to make it palatable to industry, like adding precise garbage collection and better error checking to Objective-C, with the resulting changes to the APIs. An example of work in that direction can be found here (yes, that is "gerbil.org", but it's a site about programming, really).

    Swing Java is probably the least hassle: it's well documented, it works very well on Macintosh, and you still get the native look-and-feel. It has modern resource management and modern layout management. Knowing Swing is useful and helps you on other platforms as well. And its object system is fairly similar to that of Objective-C. But some of the more advanced features have been buggy in the past (e.g., audio input, etc.). You can, however, combine Swing and Cocoa APIs, using Swing for the GUI and dropping down into native APIs only when Sun's cross-platform APIs fail you.

    If you use one of the Java-based solutions but find the Java type system too constraining, you can use Jython, a Java-based implementation of Python. You can choose to run it interactively or compiled. It's great for exploring the Cocoa APIs (or the Swing APIs).

    Another choice you may want to consider is wxWindows. Recent versions run very well on MacOSX and look native. If you want to see an example of an application written in wxWindows, take a look at Audacity.

    I tried all these different approaches, and I ended up doing most of my Mac programming in Java/Swing and wxWindows.

    1. Re:my experience by bnenning · · Score: 3, Interesting
      Cocoa using Objective-C is a somewhat outdated programming environment: the GUI design tools were great in the 1980's, but they are pretty dated by today's standards.


      That's a matter of opinion; I and many others would disagree.


      And resource management in Objective-C and Cocoa is a lot more work and a lot more error prone than in Java or C++.


      Not really. Objective C has no built in memory management (neither does C++), but it uses a reference counting system that works well enough that you rarely have to manually allocate or free memory.


      I don't see much of a future for Cocoa, at least in its current form.


      Apple does. Virtually all apps that come with Mac OS X are written in Cocoa and Objective C. iTunes and iMovie are Carbon, but that's only because they were designed to also run on OS 9.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    2. Re:my experience by g4dget · · Score: 2
      "And resource management in Objective-C and Cocoa is a lot more work and a lot more error prone than in Java or C++."

      Not really. Objective C has no built in memory management (neither does C++), but it uses a reference counting system that works well enough that you rarely have to manually allocate or free memory.

      Objective-C/Cocoa's reference counting scheme requires manual intervention--if you forget a step, it either leaks or crashes. Furthermore, its strategy often hangs on to memory longer than it needs to. And Objective-C does not have the language constructs to let library implementors automate memory management.

      C++, in contrast, does let you automate memory management: you can build class libraries that automatically reference count or garbage collect with no user intervention. They also behave correctly automatically in the presence of exceptions.

      Java, of course, automates this completely.

      "I don't see much of a future for Cocoa, at least in its current form."

      Apple does.

      Yes, and I think they are wrong. I mean, come on, do you really think that the world is going to switch to a proprietary widget toolkit from the 1980's? Even if it were every bit as great as Apple marketing claims it is, I don't see that happening.

      Let's hope they come to their senses before this really hurts them--it would be nice to have at least one alternative to Windows in the commercial world.

  65. COCOA COCOA COCOA! (and here's why) by davidmccabe · · Score: 2, Informative

    First off, the Swing Thing isn't a thing like Cocoa in terms of look-and-feel. It looks-and-feels awfully second-class on many levels.

    Don't even think about Carbon. It's 18 years of evolution from a bitty-box API that was in Pascal.

    Cocoa, on the other hand, is NeXTSTEP, and as any NeXTer can tell you, NeXTSTEP was the best operating system ever (at least the best API ever). It's amazing. Ten minutes with InterfaceBuilder and you'll be hooked. Where as most tools of this sort just give you some kind of data thingy that you have to interface with programmaticly using some magic codes, you can actually put OBJECTS in a NIB file, which will be unpacked at runtime, and automagicly referenced in places where you have references to them. They have these actions and connections. It's great.

    Java is my favorite language (although recently Ruby has been fighting hard for that space), but I must say, the docs for Java-Cocoa are terrible. I gave up and learned ObjC.

    That, inititally took about 45 minutes (I've done C++), but actually getting through the qwerks to where I could use the language well took 2 weeks or so. In a nutshell: If you are used to garbage-collection, you will hate ObjC. Period. It stinks. In almost every other respect, however, ObjC is a great language.

    The Java documentation may have improved a lot since I ws reading it.

    No, in short: Cocoa, cocoa cocoa. And Java if the docs are decent by now, otherwise Objective-C.

  66. Cocoa with Objective C. Its the only way. by BitGeek · · Score: 4, Informative


    IF you already know C then learning Objective-C will take a week or two. If you know C++ or Java, then learning Objective-C will take a day or two.

    Cocoa is, bar none, the best environment to develop applications under, on any platform. Therefore, if you've already chosen the Mac platform for your App, then use Cocoa.

    Carbon is there fore backwards compatibility. Some parts of the OS are still carbon, and carbon and cocoa have been "toll free bridged" in places so you can use data structures interchangably. but it is much slower to build an app with carbon than cocoa.

    So here's the simple way to answer your question:
    1) IF you simply must use Java, or want to eventually run on multiple platforms, use Cocoa-Java (Which is well documented. Get Cocoa Browser to get easy access to the docs.) Use any Cocoa book to learn how to write in cocoa-java, just use the Java APIS instead of the Objective-C ones. Though Java isn't perfectly supported and Objective-C is recommended if you don't HAVE to use Java.

    2) IF you have a large application ( greater than 10,000 lines) then it may be better to use carbon. A huge app, like photosohop, it definately makes sense. but any small application would be better off with rewriting the UI using the Appkit and Objective-C and just bringing over the calculation and graphics stuff from the previous version as-is. After all, Objective-C and C code (and even C++ code and Java) can be intermixed.

    3) You should never start a new application using Carbon. Carbon is for backwards compatibility. IF you're starting a new application, use Cocoa and you'll save so much time with the superior cocoa apis that the time it took to learn them will be more than made up for.

    I had a Java application that I wanted to bring to Mac OS X. I started down the path of Cocoa-Java and quickly realized that objective-c was recommended, so I checked it out and discovered even the fact that I was learning a new language, as well as a bunch of new frameworks, I was getting a lot more work done faster using Objective-C and Cocoa than I have in the past with Java.

    Carbon is there for backwards compatibility when it doesn't make sense to rewrite the app. Cocoa-Java is there when you have a JAva app you want to migrate. But Cocoa with Objective-C is the clear, definite, best way to go under Mac OS X.

    And anyone who's taken the time to learn it will tell you that it is far superior to the alternatives.

    I dread dealing with Carbon APIs now as they invariably turn into time sinks where it seems to tkae 4-8 times as much effort to get something done as it would if there were a cocoa api for the area in question.

    Go Cocoa/Objective-C.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  67. I wouldn't say Java-Cocoa is worthless. by BoomerSooner · · Score: 2

    Probably because that is the reason I decided to support mac development. My apps need a common code base (since they are for linux, windows and mac os x) and java is the easiest way to go. Custom UI, standard classes.

    As far as the Carbon programming maybe it's the developer not the tool. I could try building my own house (by hand) but why when I couldn't frame a house to save my life? My framer is skilled in building and I am not. Same goes for Carbon programming, Adobe Photoshop seems to run just fine and it's a carbon app.

  68. Re:Mozilla != MacOSNowis by Fished · · Score: 2
    I have to wonder - what version of Mozilla are you basing this on? I am running Netscape 7 as we speak, and it seems quite snappy to me. As far as environmental bloat .. that seems to be true of virtually all the environments out there nowadays. Looked at .net lately?

    I recognize that xpcom components are not automatically portable, but they are a heck of a lot more portable than most similar environments. XPFE takes care of most of the nitty-gritty work necessary to make them portable.

    --
    "He who would learn astronomy, and other recondite arts, let him go elsewhere. " -- John Calvin, commenting on Genesis 1
  69. Re:C# by BitGeek · · Score: 2


    C# is already dead. It would be stupid to write applications in it.

    Nobody is going to support it because everyone knows that doing so puts them at the mercy of Microsoft, and microsoft has shown themselves to be both desirus of the entirety of the application market and also willing to undermine the ability of competitors to work on the platform. C# makes it really easy for them to do this.

    COBOL has more of a future.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  70. Re:native != better by BitGeek · · Score: 3, Insightful


    Cocoa puts you in the MVC pattern, meaning that you have rather good portability if you decide to go to a different view-- just subclass your controler and tie it to the new UI.

    Objective-C is portable because GCC is portable.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  71. Re:If you were Really HardCore by BitGeek · · Score: 2


    Premature optimization is the root of all evil.

    Real artists ship.

    People prefer software that actually works.

    I'd rather be rich and not have the the respect of a poser such as yourself.

    However, if you're working on a product to compete with mine, I can't help but agree that you should be using assembly for everything-- and to recommend that you create your own ui widgets while you're at it.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  72. Re:anal cox by BitGeek · · Score: 2


    Microsoft only has %40 market share. Linux has %10, and the various Mac OS versions have the remaining %50.

    Get your facts straight!

    PS- for the impaired, my point is to point out that the %95 number is just as fabricated as the numbers I gave.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  73. I don't have upwards of $1500 by yerricde · · Score: 2

    >[Qt is fully GPL] Only when compiling for the X11 target

    Not if you purchase a license! Qt is well worth the money!

    Only if you're in a for-profit business. Qt/Mac will expire after 30 days. Most hobbyist developers (such as myself) don't have upwards of $1500 for a widget set. And according to this FAQ entry, Trolltech releases Qt Free Edition only for operating systems that are free software. Thus, Trolltech will not release Qt for Windows until ReactOS is complete, nor Qt for Mac as free software until GNUstep is complete.

    --
    Will I retire or break 10K?
  74. Re:Best Framework for Mac OS X by BitGeek · · Score: 2

    What the hell? I thought Ambrosia was a quality place but this is pretty silly:

    but like an OO framework, you must design your object hierarchy well ahead of time.

    You should check out XP-- Extreme Programming. Its an excellent methodology that works fine with OO development. Its quite trivial to refractor your code when your project changes direction.

    I'd say spending time designing your object hierarchies before you start programming is an example of *bad* development process, not good, even though I used to do exactly that same thing.

    There is also a rather serious learning curve for Cocoa,

    True, though it is significantly less of a learning curve than you have to deal with for Carbon. Cocoa re-uses objects a lot, whereas every Carbon API has a whole new set of data structures it takes as parameters, etc.

    The learning curve is much lower for Cocoa than for Carbon. (And consequently, development is much faster in cocoa as well.)

    and if you decide to go with Cocoa over Carbon, you've essentially written off any xplat possibilities.

    That's just silly, unless your idea of "xplat" is crossing between OS X and Mac OS. But OS 9 is dead and I don't think people are really writing apps to support it. As for going from OS X to windows or linux, you have FAR MORE xplat possibility with cocoa-- first off there's cocoa-java, but even if you use objective-c There is work on an open source cocoa called gnustep. I'm aware of no xplat carbon frameworks, let alone superior ones.

    Most of the major applications for Mac OS X are written in Carbon, and will continue to be.

    That's just crap. Most of the major applications written for OS X are written in Cocoa. The only carbon apps are ones that started on OS 9 and were ported.

    IF you're porting an app from OS 9, sure, use carbon. But if you're starting from scratch, it would be stupid to not use cocoa.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  75. Re:Speaking from experience... by BitGeek · · Score: 2


    Yes, when you say something strongly (eg: not couched with lots of "I think" and "if its ok with you for me to think this way, my opinion would be.. but if its not ok, I retract what I said") and the moderator disagrees with you, and is your tpyical slashdot incompetant pseudo-geek idiot, they will mark you as flamebait simply because they disagree with what you said.

    Moderation seems to often be more about whether the moderator agrees with you than in weeding out the actual flamers.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  76. Re:macintrash by BitGeek · · Score: 2


    I think you represent the average linux user.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257
  77. Re:The Master Of C by Frymaster · · Score: 5, Informative
    yes, the basic *concept* of pointers is easy and the implimentation as outlined in the hello world calibre demo code that comes with most tutorials is simple... but the reality of memory management in non-trivial apps is quite different. why do you think there are so many memory profilers and leak-detectors on the market?

    in obj-c memory mgmt is much better handled. when you make an object a "reserve" is put on it. when yr done with the object, you "release" it. you can add as many reserves as you want and release them when you wish. when the reserve count finally reaches zero, the object is deallocated. brilliant!

    the skinny on obj-c and memory is here

    if you find you have objects deallocating prematurely and are losing track of yr reference counting, get the object meter from omni group (makers of omniweb). there's a free demo license that works quite well for the budget-challenged.

  78. Cocoa and ObjC. by BitwizeGHC · · Score: 2

    Unless you're planning for compatibility with MacOS 9, Objective-C and Cocoa are the language and API you should be using. The Quartz API is far more robust and does a lot of things better (e.g., rendering fonts) than Carbon does. Java Cocoa programs tend to have a huge memory footprint simply because Java comes with an enormous framework of classes that needs to be linked in.

    Carbon also has the disadvantage of being a bitch to program. I think I'd rate Win32 and Classic MacOS API's (which is what Carbon is) as bing at about the same level of difficulty to program in. Objective-C isn't all that bad: it's like C with Smalltalk grafted in. Once you pick up the basic syntax, writing graphical applications using Cocoa is a breeze. The Developer Tools CD comes with everything you need, including compilers and full API documentation. Consider it a fun learning experience.

    --
    N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
  79. Re:I recommend . . . by Tim+Browse · · Score: 2
    My theory is that all Windows developers code for money

    Proof by counterexample: I write free programs for Windows - so do a few thousand others, the last time I checked.

    Ooh, that was easy! Give me another one! :-)

    Tim

  80. Re:Best Framework for Mac OS X by fault0 · · Score: 2

    > Many parts of Cocoa are built on top of Carbon

    Well, sorta. Most parts of Cocoa and Carbon are built in top of CoreFoundation.

    I would say, however, for someone who doesn't know either Carbon and Cocoa, Cocoa is quite a bit more applicable for use in the future. Carbon will die sooner or later, perhaps to the successor to OSX.

  81. Re:Speaking from experience... by fault0 · · Score: 2

    > Objective C is a bastard child of C and C++, and it doesn't really mesh too well.

    What? Objective C is older than C++.

  82. Re:How am I a troll? by fault0 · · Score: 2

    You were probably marked down as a troll because of:

    > because the developer license costs money for Mac OSX

    Now, the moderator probably interpreted this as "A developer license for MacOSX costs money", instead of "A developer license for the MacOSX version of Qt costs money". The first is true, and the latter is not.

  83. What a strange question. by Alien+Being · · Score: 2

    Don't write to the OS, write to the customer's requirements. If you *must* write to the OS, do what the vendor tells you, else they will cut off your oxygen when you can least afford it.

    Unless it's GUI/multimedia intensive, it should be possible to pick an API that you and your customers can easily move to other OSes and other hardware.

  84. Re:C# by fault0 · · Score: 2

    > C# is already dead. It would be stupid to write applications in it.

    Not true at all. Microsoft has said that the future of the windows platform is .NET. Because of this, I've seen many MFC (probably the most used graphical API), switch to C# and Windows.Forms once they switched to VS.NET, bypassing MFC7. Conversly, I've seen many VB developers bypass VB.NET for C# (the two are quite similiar anyways).

    The only people who won't switch anytime soon are people who have huge codebases using MFC or plain win32 or win32-based internal API's (which companies such as Adobe use).

    However, Microsoft has assured the success of C# pretty much by most other windows programmers by making managed C++ really quite a kludge (and slow) compared to managed languages such as C#, VB.NET, or MFC with C++ (or win32 and C).

  85. Re:Speaking from experience... by Twirlip+of+the+Mists · · Score: 2

    See, now that's the BitGeek that I've come to know and love. ;-)

    --

    I write in my journal
  86. porting by captaineo · · Score: 2

    What I'd really like to know is, what would be the best API for porting a large existing program to Mac OSX?

    Say I have a medium-to-large C or C++ program. Currently it has a Windows GUI (using MFC or straight Win32) and an X GUI (using Gtk or Qt). Now I want to port it to OSX, taking as much advantage of existing code as possible. What API do I use?

    (e.g. I am excited about all the possibilities of Cocoa, but is it really that easy if the core program is NOT OSX-only?)

  87. Fairly simple!? by rjrjr · · Score: 2
    Your implication that Cocoa can't handle a complex GUI is ridiculous. Sputter, fume...words fail me.

    rjrjr

    1. Re:Fairly simple!? by statusbar · · Score: 2

      No I did NOT imply that Cocoa can't handle a complex GUI application! My comment was not ridiculous! I have found that most applications are often eventually desired to be easily portable to other platforms. Hence the suggestion - Write the core code in a portable c++ library, and do the simple gui on Cocoa. Then for windows, use the same c++ core code library and a win32 gui. For linux, use the same c++ core code library and a gtk or qt gui.

      Most applications that I have written have been requested for platforms other than I wrote them for. Either write your code with a portable gui toolkit, or cleanly seperate your core code from the gui so you can port the application easier!

      --jeff++

      --
      ipv6 is my vpn
    2. Re:Fairly simple!? by rjrjr · · Score: 2
      Ah, point taken. It wasn't clear to me what you were driving at.

      Me, I'd be more inclined to go the portable core/native UI route, but it you're right, it would have to add up to more work with each additional platform.

  88. Qt by e8johan · · Score: 2

    I must recommend Qt. You'll get neat code, portable to Win32, X-windows, BeOS, etc. Get it from Trolltech!

  89. Re:I recommend . . . by Tim+Browse · · Score: 2
    That was a general rule.

    Every rule has exceptions.

    So what you actually mean is, instead of saying this:

    My theory is that all Windows developers code for money

    You should have said this:

    My theory is that most Windows developers code for money

    as it's more accurate. And probably less contentious.

    On the Mac, there is a lot of freeware utilites and other things and the same freature set will cost money under Windows.

    Hmmm....I think I feel another exception coming on... :)

    Tim

  90. Cocoa and carbon -- bitter enemies to the end by inkswamp · · Score: 2
    For those curious about the Cocoa/Carbon debate

    I have to confess I don't fully understand this perceived dichotomy between Carbon and Cocoa. I've been doing Macintosh programming since system 7.x and I've recently gotten into Cocoa. There were some fears initially that I wouldn't be able to use any of the code I'd written previously, but that fear was allayed with this:

    #import <Carbon/Carbon.h>

    I can bring the Carbon headers right into any Cocoa project or object and then drag over old code. No biggie. (Although for the record, it's not 100% backward-compatible. You do have to tweak things a bit.)

    I'm not sure that Apple ever intended Cocoa and Carbon to be rival approaches, but rather complements--that's how I'm using them. Still, this perception exists.

    --
    --Rick "If it isn't broken, take it apart and find out why."
  91. GUI framework for OS X by Crazy+Viking · · Score: 2, Interesting
    Hey, if what you are looking for is a GUI framework for OS X then you should look no further than QT. It is C++ and cross platform source code compatible (Linux, unix and windoze).

    If time was money we should all sit around waiting to get rich.

  92. Stay far far away from Swing by forgoil · · Score: 2

    Not only is it horrible, but it is also about as slow as anything ever has been.

    I suggest going with a native interface, and if you don't want to do ObjC do C++ and separate the logic and the display. Don't try too hard to get something portable, that will work against you. Concentrate on making a good piece of software and code clean and easy to understand C++. It will be much easier to port it if you have a good design.

  93. Re:Don't use Cocoa by Aapje · · Score: 2

    This is just FUD, there isn't a lot that you can do in Cocoa, but not in Carbon (or vice versa). More and more they are just becoming two representations of the same basic API's. In fact, often enough Cocoa calls Carbon to do its thing.

    BTW, as long as Photoshop and Word aren't rewritten (yeah right!), Carbon won't vanish.

    --

    The Drowned and the Saved - Primo Levi
  94. Re:The Master Of C by jeremyp · · Score: 2

    Why do people have trouble with pointers in C? Well let's see:

    What about the subtleties of:

    FILE* p ;
    char* q = p ;

    p++ ;
    q++ ;

    or the difference between the following:

    char* argv [10] ;
    char argv [10][10] ;
    char (*argv) [10] ;

    and the following, why does the assignment in foo work albeit get thrown away when the function exits, but the assignment in main not even compile:

    void foo (char a [], char b [])
    {
    a = b ;
    }
    char x [10] ;
    char y [10] ;

    int main ()
    {
    x = y ;
    }

    The basic concept of pointers is quite simple, but to code in C effectively using them requires days of practical experience.

    --
    All I want is a secure system where it's easy to do anything I want. Is that too much to ask ~~ Randall Munroe
  95. Re:SWING is NOT the only choice. What about SWT? by Twirlip+of+the+Mists · · Score: 2

    SWT suffers from exactly the same flaws that doom Swing. It's ugly, and user interfaces created with it are unpleasant to use. It looks like exactly what it is: a user interface designed and built by a UNIX user with no particular concern for the overall user experience.

    No, thanks. I'll stick with Aqua. That way I can use a computer without feeling like I want to claw my eyes out at the end of the day.

    --

    I write in my journal
  96. Re:is OS X open source? by Art+Tatum · · Score: 2

    Part of the operating system is (Darwin). But all the graphical stuff you see is not. It is not related to Linux, it *is* related to Mach and BSD. Darwin already runs on x86. Furthermore, if you need to have your Mac OS X applications run on other platforms, you can use GNUstep, but you'll have to avoid QuickTime (patent issues) and some things that are only partly implemented in GNUstep currently. After that, you can run Cocoa applications on other UNIX systems (like Linux, *BSD, HP-UX) and in the future, Windows (there is a Windows graphics backend, but it's in an alpha state).

  97. Re:No, you idiot. by Hilary+Rosen · · Score: 2

    "People who like C either like to tinker or believe they're going to live forever." Could it possibly be due to the stability and bug free compiler, compared to C++?

    --
    Yes, the nick is flamebait
  98. Re:C# by BitGeek · · Score: 2


    Yes, except that developers for the microsoft platform are the MINORITY, not the majority.

    Yes, MS has a large installed base and a large part of one segment of the market-- but the rest of the industry is not going to adopt C#.

    The language is DOA. The only question is will it destroy microsoft in the process, or not.

    --
    Yeah, and you guys panned the ipod too: http://apple.slashdot.org/article.pl?sid=01/10/23/ 1816257