tags:

views:

2552

answers:

3

I would like to learn Objective-C using online tutorials. I'm a native C# programmer but I know C++. Which compiler should I use on windows vista?

+3  A: 

Good Online Book Recommendation

For Objective C, this online book is really good...
it was recommended when I took my Cocoa class.

http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/ObjC.pdf

Mark Harrison
+1  A: 

GCC is really your only choice, AFAIK. Since pretty much nobody uses Objective-C without the Cocoa/OpenStep frameworks, you can use it with GNUStep on Windows.

Chuck
Using Objective-C without Cocoa is like using C++ without STL or Boost. I frequently use Objective-C without Cocoa simply because I find the abstraction and polymorphism easier to comprehend than C++. You're right, pretty much nobody uses Objective-C without Cocoa, but it's not a dumb thing to do.
dreamlax