1

I would like to test Objective-C, but I don't have a Mac. Is it possible to program Objective-C in Windows? Another possibility is to do it in Linux. Does anyone know if either is possible?

RustyTheBoyRobot
  • 5,790
  • 4
  • 35
  • 54
marko
  • 10,205
  • 16
  • 68
  • 91
  • Previously asked and answered in more detail here: http://stackoverflow.com/questions/56708/objective-c-for-windows – Chuck May 25 '10 at 17:49

1 Answers1

4

Yes, the GNU Compiler Collection contains an Objective-C frontend.

It will easily work on Linux and can be used on Windows too if you workaround with some binary distributions like cygwin or gnustep.

But I don't think you will have any kind of Cocoa API, you will have just the ObjC syntax.

Jack
  • 128,551
  • 28
  • 227
  • 331