Guest User

Untitled

a guest
Jan 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #import <Availability.h>
  2.  
  3. #ifndef __IPHONE_3_0
  4. #warning "This project uses features only available in iPhone SDK 3.0 and later."
  5. #endif
  6.  
  7. #ifdef __OBJC__
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. #endif
  11.  
  12. #ifdef DEBUG
  13. #define debug(fmt, ...) NSLog((@"%s:%d - " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
  14. #else
  15. #define debug(...)
  16. #endif
Add Comment
Please, Sign In to add comment