Search Results

0
votes

instance variable/ method argument naming in Objective C

The sample code produced by Apple usually uses a "_" prefix. I think I also saw some using mFoo or m_foo. Some don't bother with prefixes at all and just use a normal name …
1
vote

Is Objective-C 2.0 exception handling supported on non Mac OS X platforms?

Apple uses a variant/fork of the standard GCC, in which Objective-C 2.0 support is built-in. As far as I know, none of the Objective-C 2.0 features exist in the standard GCC. I'm not exactl …
6
votes

Cocoa or Objective-C?

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 …