I'm learning objective-C and Cocoa. In the Apple tutorial I'm working through there's a side note that says:
IBOutletis a null-defined macro, which the C preprocessor removes at compile time.
I'm curious - what's a null-defined macro?
Cheers Ben
|
|
I'm learning objective-C and Cocoa. In the Apple tutorial I'm working through there's a side note that says:
I'm curious - what's a null-defined macro? Cheers Ben |
|||
|
|
|
|
Oh and while I'm at it. Option double click will (attempt to) open up the documentation for the double clicked symbol. |
||
|
|
|
|
Also - if you're unsure how anything is defined - command double-click it and Xcode will open the definition in the original source file. |
||
|
|
|
|
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: #define IN #define OUT #define INOUT int myFunction(IN char *name, INOUT char *address, OUT char *phone); This declaration suggests that |
||
|
|
|
FYI, in this particular case, the reason the |
||
|
|
|
|
Whenever IBOutlet is used in program text, it will be replaced with nothing at all. |
||
|
|