Having involved in C++ projects for more than ten years, it is really a big question for me that why Objective-C has been used as the base programming language on iOS. Taking a look at Objective-C spec, it seems that it is more dynamic than C++ in binding variables to their types, as a result it is not more efficient than C++. Can someone tell me what the philosophy behind using this language is?
|
closed as off topic by Paul R, Josh Caswell, Nicol Bolas, Firoze Lafeer, Williham Totland Dec 13 '11 at 8:09
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
There is no philosophy per sé, Apple bought Next Computer and their Operating System NeXTSTEP, which provided an objective-c API. Mac OS X is based on on the NeXTSTEP system, and in turn, iOS is based on OS X, so it's a natural progression. This also explains why a whole bunch of classes start with NS. |
|||
|
|
Read this or ask Tom Love & Brad Cox :p |
|||||||||||||||
|
|
Basically, they are both parallel developments to make C object oriented. NeXT picked Objective c, and as a result Apple uses it now. Read this: http://luminaryapps.com/blog/objective-c-a-history/ |
|||
|
|
|
iOS is Mac OS X, ON MOBILE! On Mac OS X; the lingua franca is Objective-C. This, in turn, is because Mac OS X is NeXTStep, ON A MAC!; and the language used for the NeXTStep frameworks is Objective-C. As has been pointed out, Objective-C predates C++; and SmallTalk, upon which Objective-C is based, while a neat language, isn't really suited for large-scale development. In many ways it was the best of limited options, but it has nonetheless stood the test of time, and holds up well, even today. |
|||||||||
|