Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Genuine question: what is the appeal here?

I write iOS apps for a living, and appreciate what Objective-C and (especially) Cocoa have to offer, but why would anyone choose to use Objective-C when there are so many other great alternatives available?

To consider just one example of the pain Objective-C developers like me have to deal with on a daily basis, why would I want to write:

  NSDictionary *d =
      [NSDictionary dictionaryWithObjectsAndKeys:
       [NSNumber numberWithInteger:1], @"foo",
       [NSNumber numberWithInteger:2], @"bar", nil];
when most other mainstream web programming languages allow me to write something like:

  d = { "foo" => 1, "bar" => 2 }


Relative runtime speed or compatibility with an existing Objective-C code base that you want to easily call from your web app are two possibilities that spring to mind.

This isn't to say that conciseness of expression isn't a useful attribute, but I don't think it's so utterly critical to web development that the any tool suited for the job must provide such things as concise dictionary syntax.

You use the best tool for the situation, and I can at least conceive of situations in which I might care about the benefits that come with using Objective-C et al more than I care about how verbose dictionary initialization is.


> I can at least conceive of situations in which I might care about the benefits that come with using Objective-C et al than I care about how verbose dictionary initialization is.

Fair enough. I'm interested to hear more about what these situations are.

For what it's worth, my point isn't limited to dictionary initialization. That example, though, does represent a lot of what makes Objective-C painful for me. That list also includes its extreme verbosity; the need to box and unbox native types when storing them in containers (or passing them to performSelector: and friends, and other uses); the necessity of separating header and implementation files; requiring forward declarations of methods to avoid compiler warnings; simply adding an ivar as a property requires touching code in a minimum of 3 different locations, and potentially across 2 files (@property statement, @synthesize statement, call to release in dealloc (until ARC), and, pre-iOS 4.0, actually declaring the ivar in the class definition); and, of course, manual memory management, which includes worrying about fairly esoteric edge cases like retain cycles.

None of these things are hard, including memory management. But it is code that has to be written, and more code means more bugs. In almost all other mainstream web languages, the computer takes care of these things for you, as it should.

Tack onto all of that the fact that if you're running Objective-C/Cocoa as a web app, you're probably on your own in terms of finding solutions to problems from the community online -- at least compared to mainstream languages -- and it feels to me like it's hard to justify the tradeoff unless you have a very specific need.


Objective-C's incredibly verbose syntax for array and hash manipulation is my number one pain point with the language. A little syntactic sugar would go a long way here.


Try this set of macros that adds some syntactic sugar to obj c: https://github.com/petejkim/ConciseKit

For example, this:

  [NSDictionary dictionaryWithObjectsAndKeys:v1, k1, v2, k2, nil]
Turns into:

  $dict(v1, k1, v2, k2)


This looks promising, thanks for the tip.

I didn't know you could use $ in macros. Does the C preprocessor accept any other special characters?


It's actually a GNU C extension to the set of legal identifier characters.


Unfortunately XCode's definition of word characters doesn't include $, so cmd-double-click on an identifier like $dict doesn't work. Anyone know a fix?


Warning... cynical comment, disguised as humor.

Let's bash Objective-C, like Java. Oh wait... Objective-c is "cool". Never mind.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: