What's a 'null defined macro'? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:23:44Z http://stackoverflow.com/feeds/question/22001 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/22001/whats-a-null-defined-macro 5 What's a 'null defined macro'? Benedict Cohen 2008-08-22T09:55:47Z 2008-11-10T16:15:25Z <p>I'm learning objective-C and Cocoa. In the Apple tutorial I'm working through there's a side note that says: </p> <blockquote> <p><code>IBOutlet</code> is a null-defined macro, which the C preprocessor removes at compile time.</p> </blockquote> <p>I'm curious - what's a null-defined macro?</p> <p>Cheers Ben</p> http://stackoverflow.com/questions/22001/whats-a-null-defined-macro/22003#22003 7 Answer by Greg Hewgill for What's a 'null defined macro'? Greg Hewgill 2008-08-22T09:56:57Z 2008-08-22T09:56:57Z <pre><code>#define IBOutlet </code></pre> <p>Whenever IBOutlet is used in program text, it will be replaced with nothing at all.</p> http://stackoverflow.com/questions/22001/whats-a-null-defined-macro/22455#22455 7 Answer by Matt Dillard for What's a 'null defined macro'? Matt Dillard 2008-08-22T14:15:09Z 2008-08-22T14:15:09Z <p>FYI, in this particular case, the reason the <code>IBOutlet</code> even exists is simply so that Interface Builder can parse the source file and glean bits of understanding from it. It's a clue (well, a bit stronger than a clue) that the variable preceded by <code>IBOutlet</code> should show up as an Outlet in Interface Builder when designing your UIs.</p> http://stackoverflow.com/questions/22001/whats-a-null-defined-macro/45364#45364 5 Answer by botismarius for What's a 'null defined macro'? botismarius 2008-09-05T07:09:17Z 2008-09-05T07:09:17Z <p>A null-defined macro is a macro which will be replaced by nothing (will be removed) by the preprocessor. It's role is to give a hint about something in code, such as:</p> <pre> #define IN #define OUT #define INOUT int myFunction(IN char *name, INOUT char *address, OUT char *phone); </pre> <p>This declaration suggests that <code>name</code> is a input variable for the function, <code>address</code> is both input and output, <code>phone</code> is an output variable.</p> http://stackoverflow.com/questions/22001/whats-a-null-defined-macro/146270#146270 0 Answer by schwa for What's a 'null defined macro'? schwa 2008-09-28T17:12:18Z 2008-09-28T17:12:18Z <p>Also - if you're unsure how anything is defined - command double-click it and Xcode will open the definition in the original source file.</p> http://stackoverflow.com/questions/22001/whats-a-null-defined-macro/146273#146273 0 Answer by schwa for What's a 'null defined macro'? schwa 2008-09-28T17:13:26Z 2008-09-28T17:13:26Z <p>Oh and while I'm at it. Option double click will (attempt to) open up the documentation for the double clicked symbol.</p>