vote up 1 vote down star
1

Hello,

I'm beginning in Objective-C development and as i can see in the development blogs(about Objective-C) all they use Mac and some use Linux, but why we don't have many Objective-C developers on Windows, since Objective-C is a very good and easy language?

flag

And about UNIX? – Nathan Campos Oct 17 at 15:46

6 Answers

vote up 3 vote down check

AFAIK, Objective-C is only used by Apple, thus the high use on Macs. Objective-C is a great language, and it might start seeing exposure on other platforms, though. If you want to code for Mac or for iPhone, pretty much the only options are Objective-C.

link|flag
vote up 2 vote down

A big part of the answer is tools. As far as I know, there's no compiler that runs on Windows, no framework for Objective C on windows, nothing. It's not a great place to start from.

If you want a C-derived language for Windows, go with C#. Visual Studio Express editions are free, if you want to give it a try.

link|flag
2  
Learning C++ instead of C# would be better in my opinion. – Partial Oct 17 at 15:31
4  
I have VS Pro and i know that we have a compiler(gcc) and a framework(GNUstep). – Nathan Campos Oct 17 at 15:32
1  
Objective C has limited use except on Apple platforms, and C# has limited use except on Windows. I agree with the C++ recommendation. – David Thornley Oct 17 at 15:59
definitely steer clear of C#, stick to C or C++ depending on your needs. – Anacrolix Oct 25 at 0:43
vote up 1 vote down

Objective-C alone is not so great. What makes it wonderful is mainly Cocoa, which is available only on Mac.

link|flag
vote up 1 vote down

Frameworks.

Apple development is mostly done using the Cocoa Objective-C frameworks. Without similar frameworks on Windows, there isn't much reason to use the language.

link|flag
vote up 1 vote down

Obj-C is mainly used on Mac because Apple champions it heavily, uses it for their API's and provides a lot of tool support for it.

It's pretty much the same reason why so much C# development is focused on Windows. Microsoft uses it for many of their products, they provide probably the best tools in the industry for working with it.

For the language to catch on on Windows, the Windows platform has to support it, and do so well. And I don't think that's going to happen.

link|flag
vote up 2 vote down

The reason is, as many have stated, that the frameworks and tools are primarily Apple's. However, there are alternatives. Two I know of:

  1. GNUstep: http://www.gnustep.org/
  2. Cocotron: http://www.cocotron.org/

GNUstep is a better choice for working directly on Windows; Cocotron is better for building on Mac and cross-compiling to Windows. Good luck!

link|flag

Your Answer

Get an OpenID
or

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