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?
            Asked
            
        
        
            Active
            
        
            Viewed 582 times
        
    1
            
            
        - 
                    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 Answers
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
        
- 131,802
- 30
- 241
- 343
- 
                    
- 
                    thanks for your clarification. Never got too deep inside ObjC on other platforms since I've got a mac :) – Jack May 25 '10 at 18:03
 
    