Masonry iOS Examples-Prefix.pch 628 B

1234567891011121314151617181920212223
  1. //
  2. // Prefix header for all source files of the 'Masonry iOS Examples' target in the 'Masonry iOS Examples' project
  3. //
  4. #import <Availability.h>
  5. #ifndef __IPHONE_3_0
  6. #warning "This project uses features only available in iOS SDK 3.0 and later."
  7. #endif
  8. #ifdef __OBJC__
  9. #import <UIKit/UIKit.h>
  10. #import <Foundation/Foundation.h>
  11. #import <QuartzCore/QuartzCore.h>
  12. //define this constant if you want to use Masonry without the 'mas_' prefix
  13. #define MAS_SHORTHAND
  14. //define this constant if you want to enable auto-boxing for default syntax
  15. #define MAS_SHORTHAND_GLOBALS
  16. #import "Masonry.h"
  17. #endif