Cocoa or Objective-C? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:43:38Z http://stackoverflow.com/feeds/question/647360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/647360/cocoa-or-objective-c 1 Cocoa or Objective-C? 4thSpace 2009-03-15T05:46:20Z 2009-08-11T12:31:40Z <p>In regards to iPhone development, how do you now when your using a Cocoa vs pure Objective-C objects. For example, the following are Objective-C:</p> <ul> <li>NSTimer</li> <li>NSString</li> <li>int, float</li> <li>NSMutableArray</li> </ul> <p>But these are Cocoa:</p> <ul> <li>UILabel</li> <li>UIColor(?)</li> <li>UIView</li> </ul> <p>And to be clear, does</p> <p>Cocoa Touch == iPhone development</p> <p>Cocoa == Mac OS X development</p> http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647366#647366 19 Answer by dreamlax for Cocoa or Objective-C? dreamlax 2009-03-15T05:55:16Z 2009-03-15T05:55:16Z <p>You've got it a little wrong.</p> <p>NSTimer, NSString, NSMutableArray are all Cocoa. <code>int</code> and <code>float</code> are actually C, but since Objective-C is a strict superset of C, you are able to use them in your Objective-C code.</p> <p>Pure Objective-C requires linking only to the Objective-C runtime library and no other frameworks or libraries. Cocoa is a framework that includes things like NSObject and NSString. Other frameworks, like AppKit, extend the Cocoa framework.</p> <p>Coding in pure Objective-C usually means deriving from the root object called <code>Object</code> and not NSObject. Things like <code>@implementation</code>, <code>@interface</code>, <code>@selector</code> etc. are the Objective-C extensions to C and these are what are common in all Objective-C source, pure or not. If you want to code in pure Objective-C you cannot use anything other than your own objects derived from <code>Object</code>.</p> <pre><code>#import &lt;objc/Object.h&gt; </code></pre> http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647376#647376 6 Answer by sebnow for Cocoa or Objective-C? sebnow 2009-03-15T06:12:21Z 2009-03-15T06:12:21Z <p>As already pointed out, The NS* classes are actually Cocoa, not Objective-C. Objective-C is a language, while Cocoa is a framework (an implementation of OpenStep). This framework can be considered to be the "stdlib" equivalent of C++. The UI* classes are Cocoa Touch, another framework created for the iPhone.</p> <p>As to the last question, yes, Cocoa Touch is for the iPhone only. Cocoa is for Mac OS X development. However, as stated above, Cocoa is an OpenStep implementation. Alternatives to Cocoa exist, such as GNUstep and Cocotron. These alternative frameworks allow to use the same code on multiple platforms. The OpenStep frameworks are therefor not only for Mac OS X development, but can also be for Linux and Windows.</p> <p>Another thing to note is that other Objective-C runtimes are different. There is no single Objective-C specification. The <a href="http://users.telenet.be/stes/compiler.html" rel="nofollow">Portable Object Compiler</a> is yet another way of doing this. Since Apple is the dominant user of Objective-C, and it controls Cocoa, it's considered the de facto Objective-C implementation.</p> http://stackoverflow.com/questions/647360/cocoa-or-objective-c/647384#647384 1 Answer by Peter Hosey for Cocoa or Objective-C? Peter Hosey 2009-03-15T06:25:09Z 2009-03-15T06:25:09Z <blockquote> <p>In regards to iPhone development, how do you now when your using a Cocoa vs pure Objective-C objects.</p> </blockquote> <p>If you're not using anything but Objective-C in your app, then all Cocoa objects are Objective-C objects.</p> <p>If you're using Python or Ruby, then your objects will be Python or Ruby objects. But as long as they inherit from Cocoa classes, they'll be accessible to other Cocoa objects whether or not they're written in Objective-C.</p> <p>(There is Core Foundation, which provides objects that work fine in Cocoa but are not written in Objective-C. This is an implementation detail; don't worry about it.)</p> <blockquote> <p>For example, the following are Objective-C:</p> <ul> <li>NSTimer</li> <li>NSString</li> <li>int, float</li> <li>NSMutableArray</li> </ul> </blockquote> <p>Only NSTimer, NSString, and NSMutableArray are Objective-C classes. int and float are primitive types, not classes. And none of them come from Objective-C: int and float come from C, and the NS* classes all come from Cocoa.</p> <p>As sebnow wrote while I was writing this, Cocoa is a framework, whereas Objective-C is a language. The NS* classes all come from the Cocoa framework, not the Objective-C language.</p> <blockquote> <p>But these are Cocoa:</p> <ul> <li>UILabel</li> <li>UIColor(?)</li> <li>UIView</li> </ul> </blockquote> <p>No, those are Cocoa Touch. They are not available in a Cocoa app. Likewise, Application Kit classes are not available in Cocoa Touch.</p> <p>(Cocoa is Foundation + AppKit; Cocoa Touch is Foundation + UIKit.)</p> <blockquote> <p>And to be clear, does</p> <p>Cocoa Touch == iPhone development</p> <p>Cocoa == Mac OS X development</p> </blockquote> <p>Yes. Cocoa Touch is the iPhone framework; Cocoa is the Mac framework.</p> http://stackoverflow.com/questions/647360/cocoa-or-objective-c/1260053#1260053 0 Answer by porneL for Cocoa or Objective-C? porneL 2009-08-11T12:31:40Z 2009-08-11T12:31:40Z <p>It's true that Cocoa Touch is for iPhone development and "plain" Cocoa for Mac OS X development, but they're not very different and share most of basic classes.</p> <p>In iPhone development you don't need to care whether you're using pure Objective-C or Cocoa. Cocoa is 1st class citizen on iPhone and you don't gain anything by avoiding it.</p> <p>There is a slight difference between Objective-C and plain old C subset. Object allocation and method calls have higher overhead than stack-allocated structures and direct function calls, but 99% of the time you don't need to care about this either (don't try to optimize prematurely!).</p>