How to define preprocessor macros in build settings, like IPAD_BUILD, and IPHONE_BUILD (and how to use them in my factory methods)?
I'm using these by heart now, would be cool to know what is going behind.
|
How to define preprocessor macros in build settings, like IPAD_BUILD, and IPHONE_BUILD (and how to use them in my factory methods)? I'm using these by heart now, would be cool to know what is going behind. |
|||
|
|
|
/#if works as usual if:
/#ifdef means "if defined - some value or macros":
or:
Use this link for more information http://www.techotopia.com/index.php/Using_Objective-C_Preprocessor_Directives To test whether you running iPad or not you should have smth like this:
Here's another useful preprocessor functions:
|
||||