vote up 27 vote down star
15

So I have noticed that there is a lot of animosity towards Objective-C among programmers. What's your take? Is it a vendor lock-in thing against Apple? General antipathy towards Apple? The syntax? What's your view on this?

With the advent of the iPhone SDK, Obj-C has gotten a lot more attention lately, and I am curious what people on SO's opinions are.

I personally fought the syntax at first but have gotten more and more used to it now. I really like the named arguments. I have some pet peeves with how things are done in Obj-C vs other languages, but I will refrain from comment on them here.

flag

69% accept rate
1  
This should probably be a community wiki, no? – Jason Coco Jan 12 at 16:31
7  
should be a Wiki – Perpetualcoder Jan 12 at 16:46
Why should this be a wiki? I don't see the similarity to other wiki questions. – Alex B Jan 12 at 16:52
2  
I don't think it's lame. : ) – Genericrich Jan 13 at 4:40

25 Answers

vote up 40 vote down check

It really doesn't have to do with the language itself. It's more of a question of programming style and religion.

First off, as others have mentioned, is the syntax. C-style programmers are used to dotted syntax. Objective-C, on the other hand, uses brackets. (Though I believe Objective-C 2.0 allows you to use dot notation for getting/setting properties.)

More importantly, however, is the paradigm. It's the perennial debate between statically typed and dynamically typed languages. Programmers are biased between them, so they will choose their language accordingly.

Objective-C and C++ appeared roughly at the same time. Whereas C++ added object orientation to C by combining it with Simula, Objective-C combined C with Smalltalk (which in turn took inspiration from Lisp).

So, in my opinion, it's not a question of why programmers hate or love Objective-C, it's a question of what OOP school of thought they are aligned to.

link|flag
1  
Yes the 2.0 does allow the . syntax. – J.J. Jan 12 at 17:28
2  
Objective-C 2.0 only allows you to use dot syntax to get and set properties (regardless of whether declared via @property). It does not allow arbitrary method call via dot syntax, which is what C++/Java/C# developers might expect from "allow the . syntax." – Chris Hanson Jan 12 at 17:39
2  
Actually, Chris, it does allow any method which has no argument to be called using the dot notation. As in, pool.drain; - it might be icky, but it's permitted. – Graham Lee Jan 18 at 19:19
1  
Yes and no. I agree that it's the classical religious debate between static/dynamic and the syntax or whatever, but coming from other "modern" languages/frameworks/environments/ides, I just can't believe that this is the best Apple can come up with. As a developer, would you rather write an Android app in Eclipse/Java or an iPhone app in XCode/IB/Objective-C? For me it's not even close – Rich Apr 24 at 3:16
2  
Objective-C isn't something Apple came up with. Objective-C was at the root of NeXTstep and was inherited by its descendant, Mac OS X. Debate rages on both sides, but one could easily ask whether C++ was the best Stroustrup could come up with. ;-) As far as developers' preference... the platform sure doesn't seem to inhibit people from flocking to the iPhone. Java is nice, but for GUI apps on a single platform, I'll take well-developed native tools that save me programming time any day of the week. – Quinn Taylor Jun 29 at 21:36
show 1 more comment
vote up 33 vote down

Objective-C is kind of primitive compared to other languages in the same mental space. It's radically object-oriented, but only to a point and then all of a sudden it's just plain C. The way it combines a Smalltalk-style type system with a C-stye type system has a lot of seams showing. And the named arguments are great for their self-documenting nature, but other modern languages get the same benefit with greater flexibility. Languages like Ruby, Python and, heck, even Lisp manage to have named arguments (and often more per method) without having every method call read like a treatise on the human condition.

Now that I'm done bashing Objective-C: I'd still much rather program in Objective-C than, say, Java or C++. In its day, Objective-C was a pretty clever hack. But now there are other major languages that operate in the same space as Objective-C and are more powerful.

I've been using Objective-C for seven years. Others have been using it longer and still seem to be happy, and I don't hate it, but I enjoy working in Ruby more.

link|flag
1  
I have to agree for general purpose it's had it's day compared to something like c# the thing I like most is the garbage collector which can save so much time. Their is an optional garbage collector for objective c 2.0 but it's not well supported and doesn't work on the iphone. – petebob796 Jun 9 at 11:16
vote up 26 vote down

Honestly, I think that most of the complaints are coming from Windows / Java / web programmers migrating to the platform who just plainly don't want to learn something new. Witness the number of "how can I do development on Windows" or "how can I program the iPhone using JavaScript" questions that have been asked around here. Many of the posts I've read bashing Cocoa and the related development tools come from long-time Windows programmers who are upset that Xcode is not Visual Studio and Cocoa is not .Net. Developers typically choose to write for the Mac because they want to and are willing to invest the time to do it right, but the gold rush on the iPhone is bringing in a lot of people who just want a quick buck.

I don't love Objective-C, nor do I love any other language (however, there are some that I hate). What I do love are the frameworks that make up Cocoa. They are (for the most part) consistent and well-architected. They have allowed me to create better quality applications in a much shorter period of time than any other platform I've worked on. For example, I keep discovering cool things in Core Animation that would be unbelievably painful to do elsewhere. Even simple Foundation classes like NSString and NSDictionary have made my life easier.

link|flag
3  
well said, comrade – theman_on_vista Jan 22 at 15:09
vote up 13 vote down

A good language helps you think in a different way. I came to Objective-C after getting an iPhone and fancied learning how to write for it. I liked what I found! I'm an experienced C++ developer, and the concept of categories struck me as an interesting way of constructing and extended class libraries, so in that regard, it was worth learning!

link|flag
1  
Same exact story for me. – Pat Notz Jan 12 at 17:10
4  
I truly appreciate it when people have an open mind about different technologies compared to their own go-to technology. It makes for a better developer who isn't scared to take a look at something different, I commend you. – Redbeard 0x0A Jan 12 at 18:39
I am working on learning it right now for the exact same reasons – Tnay Jun 12 at 19:38
vote up 10 vote down

I think there are two things that put people off the most initially:

  1. The association with Apple. While Objective-C is not an Apple language, it's only really Apple who are using it in any mainstream way.

  2. The syntax, which looks very alien at first to people from a C/C++/C#/Java background.

When you start using it for a while, other differences tend to build on prejudices from those initial reactions and reinforce them (e.g. the static vs dynamic thing).

Like many, I started using ObjC to write iPhone software (here's my plug cue again: www.vconqr.com). It took me a few days to "get it", and a couple of weeks to really feel comfortable with it - but further a-ha moments where further down the line. The things I really like now are:

  1. The argument labelling syntax. While many people think of these as named arguments they are not exactly the same thing. And when you get used to the narrative naming style it's actually very useful. I find it difficult to go back to languages that don't have it now.
  2. The dynamic dispatch nature. ObjC has the best of both worlds. Where performance would really be harmed by the dynamic lookups for method calls, you can still drop back to raw C - and most low-level APIs (in the Apple stack) are still C. But, really, for most applications - especially GUIs - it's absolutely fine (after all the iPhone is a constrained environment and I've not yet found it to be an issue).

Beyond the initial "getting used to it" phase, the biggest moment for me was when I ported a big chunk of my original code into C++ (because I wanted to do a lot of small allocations into different types of containers efficiently, and C++ seemed to be a better fit). Although I used boost libraries - including BOOST_FOREACH (which handled a lot of boilerplate), I still found that the C++ code was vastly more verbose, full of boilerplate and less expressive (and I've been doing C++ for about 18 years).

I don't know if I'd say it's my favourite language - or if that even has any meaning these days - but it certainly has it's place and I'm glad I learnt it - even apart from the iPhone development.

[Edit] I originally had a plug here for my ACCU conference presentation on Objective-C, which took place last April. Since people still seem to be reading this (I still get votes up from time to time) I'll update the plug to my Stackoverflow DevDays (2009) presentation on iPhone Development that's coming up soon in London. I'll be spending about half the material on pure Objective-C.

link|flag
vote up 8 vote down

Jonathan Wolf Rentzsch wrote the ultimate answer to this question way back in 2003:

10 Things I Love about ObjC and 15 Things I Hate about ObjC

link|flag
1  
That was published in 2003, which makes me wonder how many of the negative points were addressed by Objective 2.0? – Kent Boogaart Apr 22 at 8:53
In Objective 2.0 were addressed at least: Hate 8: Hard to Write Good Getters/Setters Hate 11: Class unloading – IlDan Jul 13 at 20:36
vote up 5 vote down

1) Syntax - I never liked SmallTalk and I'm primarily a C# dev these days, so the syntax was quite a change. The named arguments didn't make that much sense for a bit.

2) Framework/Base Classes - When I first started trying to do things in Objective-C, it was extremely frustrating because there were only a handful of classes to use...which felt like a lot of power was lost (compared to using something like the .NET framework). Everything just felt more difficult than it should have been for basic tasks.

After having used the language quite a bit more (and having built an iPhone app now), neither of those have been a problem. I do like the syntax now - it doesn't feel odd at all now - and the framework that is there has tons of power, it was just hidden away in additional methods that I hadn't noticed. Until you go through and really read all of the documentation on the core objects, it's easy to overlook the advanced methods that are already in place.

link|flag
vote up 4 vote down

Whilst it has a far richer OO model than either Java or C++, it suffers all the shortcomings of traditional C. I think the C side leaves many people on the beach.

More seriously, it comes down to whether you think of OO as function calls or messaging. Objective-C emphasizes the Smalltalk model of messaging.

A much better language to use is Objective-C++ which you enable by using the .mm suffix on your files. It also allows you to use C++ classes but, more relevantly, the C++ language extensions over C.

link|flag
vote up 2 vote down

Personally it wasn't the brackets that got me on the syntax, it was the use of colons in arguments. It was like remembering to use "$" in PHP. I am just not used to typing that character in programming.

I also recently had a "port some obj-c I had written to another language" moment where I realized how articulate some of the code I had written was and how much excess glue was required in other situations. My latest opinion is that the mistakes made while internalizing the syntax (which are easily caught in the IDE) are well worth the trade off in flexibility and power.

link|flag
vote up 2 vote down

The more I use Objective-C, the more I appreciate it for being different. Personally, I like the message sending feel of the syntax. Not using the dot-operator gives me the feeling of sending a message to an object rather than calling something. Sounds stupid possibly, but it's a distinct difference for me.

I come from a C#/Java background and never learned C. Objective-C feels like a nice bridge from those higher-level object oriented languages to the lower-level C language.

link|flag
vote up 2 vote down

I can't say I hate Objective-C, but I find it's syntax to be just different enough to keep me from diving into it.

I really ought to spend more time with it. Like anything else, everyone tends to prefer the programming language they use most.

link|flag
"Like anything else, everyone tends to prefer the programming language they use most." Not really, some find it quite fun to learn new programming languages. – DanielSwe Mar 20 at 21:39
1  
You tend to prefer languages you don't yet know? I like to learn new languages too, but I find that odd. – Paul Lefebvre Mar 21 at 22:21
1  
Well I do prefer Haskell, and I don't really understand it. It's like a piece of art, a puzzle if you will. If you see enough people doing much with extremely little code you start to appreciate its conciseness. You also want to learn it. – DanielSwe Mar 26 at 8:17
I should also mention that I use Java, C++ and C# the most because of my employers and school forces me. And even my hobby projects are done in C++ because of its performance. – DanielSwe Mar 26 at 8:21
"And even my hobby projects are done in C++ because of its performance" I am not convinced there is much of a performance difference between C++ and Objective C. – Jacob Aug 18 at 12:36
vote up 2 vote down

The main thing I don't like about Objective-C is that when you want to send a message to the result of another message it can be a pain if you forget to put your two '[' at the start of the line. This happens to me fairly often where I think I want to send this message and then straight after writing it I think I want to send some other message to the return value. I then have to move back to the start of the call and add the extra '['. I imagine as I use the language more this will probably happen less, but at the moment it's a pain.

Another issue is that the XCODE IDE code sense just doesn't seem as good as what I can use in Visual Studio. It suggests lots of things that aren't relevant and sometimes doesn't even suggest things that are. This can be a bit of a pain when you're learning how to use the provided APIs as you can't just browse through all the methods and properties that are provided by an object.

link|flag
2  
That's may main beef with Scheme verses Python: it's so much more natural to write obj.method().method2().method3() than (method obj) oh wait I meant (method2 (method obj)) oh wait I meant (method3 (method2 (method obj))) -- in the end it's the same but it's more work getting there. – Jared Updike Jun 11 at 19:09
vote up 1 vote down

I don't hate Objective-C. Made a client app for Mac coming from a Java background and things were pretty slick. I believe people may dislike the language for being so MacOS centric.

link|flag
But now there's Android and you can just write stuff in Java :) – jcollum Jan 12 at 18:04
vote up 1 vote down

I think it has to do with the message-based threading and function-calls. The whole idea seems foreign at first. There also aren't a lot of good books on Objective-C outside of what Apple has to offer. O'Reilly has a book on Obj-C & Cocoa, but it's woefully outdated last time I checked.

link|flag
If you mean "Programming in Objective-C", a 2nd edition was published last December: my.safaribooksonline.com/9780321605559 – Dour High Arch Jan 12 at 18:07
Thanks for the tip, Dour. – Nolte Burke Jan 24 at 10:21
vote up 1 vote down

I neither love nor hate Objective-C, this is just another language. But I do love Cocoa for its ability to let the developer focus on its application.

link|flag
vote up 1 vote down

1) The use of the minus and plus (- +) operator for something other than math. A keyword would've been just as good and much easier to read. From macrumors.com: "An instance method is marked with a hyphen/minus sign". That just seems like a terrible design choice. Other languages repurpose symbols like % but I can see reasons for that, % is just shorthand for "divide by 100."

2) All the brackets. Everywhere. The dot operator makes things much easier to read.

link|flag
1  
Agreed on +/-. However, the square brackets are an aquired taste. I found them difficult to parse at first simply because I wasn't use to them. But now I think it actually makes things clearer. YMMV, of course. – Phil Nash Jan 12 at 18:08
vote up 1 vote down

I just started learning Objective-C, and there is two things about Objective-C that I don't really like

1.

CGRect frame = imageView.frame;
frame.size.width = 100;
imageView.frame = frame;

I want imageView.frame.size.width=100; in one line

2.

componentsSeparatedByString() instead of split() ? :(

I want some short and common language function names that are easier to remember

link|flag
vote up 0 vote down

Objective-C is not an Apple language -- it's been around for a long time and is usable on non-Apple operating systems. Cocoa, though, is all Apple. See also What’s the difference between objective-c and cocoa?

link|flag
vote up 0 vote down

The biggest thing for me has nothing to do with whether Objective C is a good language or not, it has to do with targeting multiple platforms. I can share very little code right now if I want to develop for Android (Java), Symbian (C++), iphone(Obj-C), or whatever. You can't even share libraries between these platforms. Writing for the iphone kinda locks you into their ecosystem the most, since Objective C is the least wide spread of the aforementioned languages.

It would be nice if these mobile platforms supported some high level environment where the developer could leverage more of the mature, understood technologies being use outside the mobile world.

It will be interesting to find out more about Palms new approach.

link|flag
1  
It's true that for the GUI, and certain other APIs, iPhone dev requires Objective-C, but you can still write C and C++. Many of the APIs are raw C APIs, which you can use any of those three languages with. In my app, my core processing component is all in C++, and I use Boost with that – Phil Nash Jan 13 at 8:58
1  
Palm's new approach seems to be solely web apps which of course also work on the iPhone. So the most reuse would seem to be smart web apps. – Andy Dent Feb 11 at 20:41
vote up 0 vote down

It's a strange mix of a statically typed language (c) and a dynamically typed language (Smalltalk). That provides something for every developer to both love and hate.

link|flag
1  
You mean "statically" and "dynamically" typed languages there - C is actually weakly-typed (supports casts), and Smalltalk is strongly-typed (has absolute object identity). – Chris Hanson Jan 12 at 17:25
Okay, I'll clean up the terminology. – Darron Jan 12 at 22:03
vote up 0 vote down

Preference, familiarity, insecurity, and jealousy varies.

Every language has it's pros and cons or it would not have existed long enough.

link|flag
vote up 0 vote down

I don't have much of a problem with the language.

I at first didn't like the Frameworks I had to work with. They all use camel case. Where as I use underscore separated words for my variable names.

But the more I got used to Objective-C and Cocoa the more I liked the clash. It helped me understand what was part of the framework and what was not.

link|flag
do you mean underscore_separated or really use hyphen-separated names? – Andy Dent Feb 11 at 20:43
ya underscore. sorry. – J.J. Feb 12 at 4:17
vote up 0 vote down

For me it boils down to one solid thing:

Every time I try to write something in Objective-C I feel like I've jumped back in time 20 years.

Let me explain the big ones for me:

  • No namespace support

  • Manually allocating/deallocating memory for objects:

    ExampleType *instance [[ExampleType alloc] init] to invoke the default constructor, and then having to remember to call [instance dealloc] or [instance autorelease].

Seriously. It's 2009. I'm STILL expected to deal with pointers and manually allocate memory? That's the epitome of the kind of code my dad wrote in the 80's.

Also, I don't know if Apple's heard about it but there's this little thing out there called AUTOMATIC FUCKING GARBAGE COLLECTION that bypasses the need to explicitly state that your object needs to be released when it goes out of scope. Not having that was excusable 10 years ago. But not now. When code exits a function, it should be smart enough by now to know what goes out of scope and deallocate it.

  • Manually boxing primitives. .Net gets this right by automagically mapping things like int to System.Int32, Java 5+ has autoboxing (at a albeit minor performance cost), but with objective-c, we're still left to the pitfall of primitives and objects

  • Generics. Ok. I get the whole dynamically-typed vs strongly-typed argument. Use NSMutableArray. blah blah blah. Why can't I make a NSMutableArray<NSDate> or NSMutalbleArray<MyCustomType>? C++ has it. And Yes, I understand I can include C++ in Objective-C projects, but that's a similar mindset of saying just reference C# projects in your VB projects to get the features you want in your solution.

  • No single standard for method documentation. Java has JavaDoc. .Net has xml comments. What does objective c have? Doxygen? Yeah... Thanks for INCLUDING THAT IN THE FREAKING SDK

link|flag
1  
ObjC 2.0 has automatic tracing garbage collection. – Pavel Minaev Aug 1 at 4:08
Lol. Garbage collection is only useful if you are writing slow poor performing C# / Java applications. Try write a server app, or some other sort of high performance data manipulation tool with garbage collection. You need some more experience before you can make such judgements. – Jacob Aug 18 at 12:38
vote up 0 vote down

I tried my hand at a bit of Objective-C programming (for an iPhone app) and didn't much like it, mainly for the following reasons:

  1. No constructors/destructors. That means that despite having reference counting, you are still required to remember a set of (fairly arbitrary) "conventions" about when to manually increment or decrement reference counts, and if you apply them wrong, your iPhone app will crash or leak memory. With C++, on the other hand, you just use a shared_ptr (or similar) and things "just work", resource-wise.
  2. Lots of errors that in C++ are caught at compile-time are not caught by Objective-C until run-time. For example, if you misspell a method name or leave out a required argument, the code compiles but then gives a run-time error when you run it. This means you spend a lot of time running, fixing, re-compiling, and re-running your program until all the dumb mistakes have been caught -- in C++, by the time the program compiles, most of the dumb mistakes are already taken care of
  3. Not really an Objective-C criticism, but I found the X-Code IDE really clumsy and annoying to use. I much prefer good old vi-and-make.
  4. Lastly, Apple's object model just didn't make a lot of sense to me. Maybe my brain is just too calcified, but there were so many managers and delegates and so on to keep track of that just building a simple GUI seemed like an exercise in black magic. By contrast, I've been using Qt for years and have always found its APIs to be immediately understandable.
link|flag
vote up -1 vote down

Objective c is old and tired. It would have been great to have 25 years ago when I was 12 and wanted a language to do a lot of cool stuff with... but now it way behind the times with its extremely verbose syntax that is avoided in other languages with the help of today smart development environments. Coding purists love it because it makes you think... whatever, I already know how to code well, I just want to get the job done quick... it's like glorifying the wheel for its genius and dismissing planes and rocket ships because they're all magic. Technology has moved on and so have programming languages/environments. You can move on with the rest of us or stay in your cave admiring the wheel.

link|flag
I like my cave, thanks. You are glorious and have certainly earned a lot of respect in my eyes with your open-mindedness and objective viewpoint. Way to go. – Genericrich Sep 1 at 0:20
... right. Because all those other languages and environments let you put together a fully functional web browser in a dozen lines of code... That's not a wheel I'm admiring, it's an axial flow turbojet off the (working!) single stage to orbit flying car I built using objc. You do remember the pages and pages of COBRA code to do the simplest things published in magazines as "ground breaking", only to have the objc guys show up and do the same thing in under a half dozen lines, right? How many other languages can legitimately claim distributed RPC with zero changes to your code? – johne Sep 6 at 4:52

Your Answer

Get an OpenID
or

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