Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Objective-C source code

Tags:

objective-c

Where can I find the source code for the Objective-C language? Is it open-source or is there an open-sourced implementation of it available?

like image 309
vdoma Avatar asked Oct 02 '10 06:10

vdoma


2 Answers

It really depends on what you mean by Objective-C, there are compilers, runtimes and libraries for it.

  • http://opensource.apple.com/ Contains much of Apple's source code for OS X and iOS.
  • you can also see http://clang.llvm.org/ for a compiler.
  • GNUstep is an open source implementation of OpenStep (Cocoa).
like image 51
cobbal Avatar answered Oct 04 '22 10:10

cobbal


I think you are asking for Cocoa - and this is not open source. All you have are the header and reverse engineering tools.

like image 37
Lothar Avatar answered Oct 04 '22 11:10

Lothar