What's a 'null defined macro'? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:23:44Zhttp://stackoverflow.com/feeds/question/22001http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/22001/whats-a-null-defined-macro5What's a 'null defined macro'?Benedict Cohen2008-08-22T09:55:47Z2008-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#220037Answer by Greg Hewgill for What's a 'null defined macro'?Greg Hewgill2008-08-22T09:56:57Z2008-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#224557Answer by Matt Dillard for What's a 'null defined macro'?Matt Dillard2008-08-22T14:15:09Z2008-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#453645Answer by botismarius for What's a 'null defined macro'?botismarius2008-09-05T07:09:17Z2008-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#1462700Answer by schwa for What's a 'null defined macro'?schwa2008-09-28T17:12:18Z2008-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#1462730Answer by schwa for What's a 'null defined macro'?schwa2008-09-28T17:13:26Z2008-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>