Hidden features of Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:15:58Z http://stackoverflow.com/feeds/question/211616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211616/hidden-features-of-objective-c 6 Hidden features of Objective-C Clokey 2008-10-17T10:06:21Z 2009-03-25T01:11:39Z <p>Objective-C as a language is getting wider use due to its use by Apple for Mac OS X and iPhone development. What are some of your favourite "hidden" features of the Objective-C language?</p> <ul> <li>One feature per answer</li> <li>Give an example and short description of the feature, not just a link to documentation</li> <li>Label the feature using bold title as the first line</li> </ul> <p>See also:</p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> </ul> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/211672#211672 10 Answer by splattne for Hidden features of Objective-C splattne 2008-10-17T10:37:18Z 2008-10-17T10:37:18Z <h2>Posing</h2> <p>Objective-C permits a class to <strong>entirely replace another class</strong> within an application. The replacing class is said to "pose as" the target class. All messages sent to the target class are then instead received by the posing class. There are some restrictions on which classes can pose:</p> <ul> <li>A class may only pose as one of its direct or indirect superclasses</li> <li>The posing class must not define any new instance variables which are absent from the target class (though it may define or override methods).</li> <li>No messages must have been sent to the target class prior to the posing.</li> </ul> <p>Posing, similarly to categories, allows <strong>globally augmenting existing classes</strong>. Posing permits two features absent from categories:</p> <ul> <li>A posing class can call overridden methods through super, thus incorporating the implementation of the target class.</li> <li>A posing class can override methods defined in categories.</li> </ul> <p><strong>An example:</strong></p> <pre><code>@interface CustomNSApplication : NSApplication @end @implementation CustomNSApplication - (void) setMainMenu: (NSMenu*) menu { // do something with menu } @end class_poseAs ([CustomNSApplication class], [NSApplication class]); </code></pre> <p>This intercepts every invocation of setMainMenu to NSApplication.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/212690#212690 7 Answer by schwa for Hidden features of Objective-C schwa 2008-10-17T15:39:05Z 2008-10-17T15:39:05Z <pre><code>#include &lt;Foundation/Debug.h&gt; </code></pre> <p>Lots of tools for trying to track down memory leaks, premature deallocs, and more in that header file.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/214448#214448 3 Answer by methym for Hidden features of Objective-C methym 2008-10-18T02:45:43Z 2009-03-04T10:29:43Z <p><strong>Object Forwarding/Method Missing</strong></p> <p>When an object is sent a message for which it has no method, the runtime system gives it another chance to handle the call before giving up. If the object supports a -forward:: method, the runtime calls this method, passing it information about the unhandled call. The return value from the forwarded call is propagated back to the original caller of the method.</p> <pre><code>-(retval_t)forward:(SEL)sel :(arglist_t)args { if ([myDelegate respondsTo:sel]) return [myDelegate performv:sel :args] else return [super forward:sel :args]; } </code></pre> <p>Content from <a href="http://oreilly.com/catalog/9780596004231/" rel="nofollow">Objective-C Pocket Reference</a></p> <p>This is very powerful and is used heavily in the Ruby community for the various DSLs and rails, etc. Originated in Smalltalk which influenced both Objective-C and Ruby.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/214628#214628 8 Answer by benzado for Hidden features of Objective-C benzado 2008-10-18T05:23:30Z 2008-10-18T05:23:30Z <h2>Method Swizzling</h2> <p>Basically, at runtime you can swap out one implementation of a method with another.</p> <p><a href="http://www.cocoadev.com/index.pl?MethodSwizzling" rel="nofollow">Here is a an explanation with code.</a></p> <p>One clever use case is for lazy loading of a shared resource: usually you would implement a <code>sharedFoo</code> method by acquiring a lock, creating the <code>foo</code> if needed, getting its address, releasing the lock, then returning the <code>foo</code>. This ensures that the <code>foo</code> is only created once, but every subsequent access wastes time with a lock that isn't needed any more.</p> <p>With method swizzling, you can do the same as before, except once the <code>foo</code> has been created, use swizzling to swap out the initial implementation of <code>sharedFoo</code> with a second one that does no checks and simply returns the <code>foo</code> that we now know has been created!</p> <p>Of course, method swizzling can get you into trouble, and there may be situations where the above example is a bad idea, but hey... that's why it's a <em>hidden</em> feature.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/214710#214710 1 Answer by Michael Ledford for Hidden features of Objective-C Michael Ledford 2008-10-18T07:24:28Z 2008-10-18T07:24:28Z <p><strong>Objective-C Runtime Reference</strong></p> <p>It's easy to forget that the syntactic sugar of Objective-C is converted to normal C function calls that are the Object-C Runtime. It's likely that you will never need to actually delve into and use anything in the runtime. That is why I would consider this a 'hidden feature'.</p> <p>Let me give a way one might use the runtime system.</p> <p>Let's say that someone is designing an external framework API that will be used by third parties. And that someone designs a class in the framework that abstractly represents a packet of data, we'll call it <code>MLAbstractDataPacket</code>. Now it's up to the application who is linking in the framework to subclass <code>MLAbstractDataPacket</code> and define the subclass data packets. Every subclass must override the method <code>+(BOOL)isMyKindOfDataPacket:(NSData *)data</code>.</p> <p>With that information in mind...</p> <p>It would be nice if <code>MLAbstractDataPacket</code> provided a convenience method that returned the correct initialized class for a packet of data that comes in the form <code>+(id)initWithDataPacket:(NSData *)data</code>.</p> <p>There's only one problem here. The superclass doesn't know about any of its subclasses. So here you could use the runtime method <code>objc_getClassList()</code> along with <code>objc_getSuperclass()</code> to find the classes that are subclasses of MLAbstractDataPacket. Once you have a list of subclasses you can then try <code>+isMyKindOfDataPacket:</code> on each until one is found or not found.</p> <p>The reference information about this can be found at <a href="http://developer.apple.com/documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html</a>.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/227368#227368 5 Answer by Marco for Hidden features of Objective-C Marco 2008-10-22T20:15:07Z 2008-10-22T20:15:07Z <p><strong>Categories</strong></p> <p>Using Categories, you can add methods to built-in classes without subclassing. <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/chapter_4_section_2.html#//apple_ref/doc/uid/TP30001163-CH20-TPXREF139" rel="nofollow">Full reference</a>.</p> <p>It's nice to add convenience methods to commonly used classes, such as NSString or NSData.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/227402#227402 2 Answer by Kris for Hidden features of Objective-C Kris 2008-10-22T20:23:43Z 2008-10-22T20:23:43Z <p>I like the verbose method naming like <code>[myArray writeToFile:myPath atomically:YES]</code>, where every argument has a label.</p> http://stackoverflow.com/questions/211616/hidden-features-of-objective-c/679866#679866 2 Answer by Brent Royal-Gordon for Hidden features of Objective-C Brent Royal-Gordon 2009-03-25T01:11:39Z 2009-03-25T01:11:39Z <h2>ISA Switching</h2> <p>Need to override all of an object's behaviors? You can actually change the class of an active object with a single line of code:</p> <pre><code>obj-&gt;isa = [NewClass class]; </code></pre> <p>This only changes the class that receives method calls for that object; it doesn't change the object's layout in memory. Thus, this is only really useful when you have a set of classes with the same ivars (or one with a subset of the others') and you want to switch between them.</p> <p>One piece of code I've written uses this for lazy loading: it allocates an object of class <code>A</code>, fills a couple critical ivars (in this case, mainly a record number) and switches the <code>isa</code> pointer to point to <code>LazyA</code>. When any method other than a very small set like <code>release</code> and <code>retain</code> is called, <code>LazyA</code> loads all the data from disk, finishes filling in the ivars, switches the <code>isa</code> pointer back to <code>A</code>, and forwards the call to the real class.</p>