I've been coding in Objective C about 3 months now doing iPhone development. I've been programming C++ for about 20 years and c, basic, and assembler before that. My feeling is mixed. I don't think I like Objective C. I know I don't like XCode. I do very much like Cocoa Touch.
I admit that I am in the camp that favors strong type safety. I just can't for the life of me understand why this should compile and further why it's a good thing it compiles.
UITapGestureRecognizer* tap = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
I wrote this code cutting and pasting to get a bunch of gestures in and missed one. It didn't even give a warning. Finding the bug was a nightmare.
I do like the named parameters, but they took a bit to get used to.
I don't like manual management of a ref count. It's bound to go wrong. If I don't have it like in C I am careful to manage my memory and have clear handoff functions. Factory functions clearly place cleanup responsibility on the caller. Objective C I find I have to learn which functions retain the object and which autorelease or if I alloc and hand the object off what retains it and what does not. It's memorization of too many things. In C++ if I have a raw pointer I should be responsible, if a shared pointer then I am not, and if a reference then I'm at the whim of the owning object.
There is no comparison when it comes to available libraries. STL, Boost, Loki, for example.
I don't like the inconsistent naming convention. The poor autocomplete just adds to the problem.
XCode is not fit for consumption. It has nice ideas half implemented. It in no way compares to what is out there for IDEs. No matter what anyone thinks of Objective C, there can be no defense of XCode compared to Eclipse or Visual Studio. When I work on game consoles like PS or Wii we develop in visual studio and plug in our own build chain.
Cocoa Touch is outstanding! Full access to a very good library and the ability to mix C++ when I want those features is very good, and I know is a feature of the language. I'm building almost every game using UIKit as the dominant technology. Complaints that it's too slow etc, are just wrong. I like UI builder a lot, but as with everything XCode it's largely unfinished. Often I set a value in UIBuilder and it doesn't come through. There's just no excuse for that.
Apple created the iPhone concept and drew a lot of us to Objective C. Android is allowing C++ and already Cocos2d-x is out and surpassing Cocos2d. Android is predicted to dominate the market. C++ is coming to an iPhone near you. It will be interesting to see if allowed to choose how many people will adopt Objective C over C++.
Regardless of what I ultimately think of Objective C, learning new languages help us become better programmers. Things we like in one language have a habit of creeping over and that is helpful to everyone.