Last active
December 10, 2015 16:29
-
-
Save aymericio/4461726 to your computer and use it in GitHub Desktop.
Prefix.pch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Prefix header for all source files | |
| // | |
| #import <Availability.h> | |
| #ifndef __IPHONE_5_0 | |
| #warning "This project uses features only available in iOS SDK 5.0 and later." | |
| #endif | |
| #ifdef __OBJC__ | |
| #import <UIKit/UIKit.h> | |
| #import <Foundation/Foundation.h> | |
| #import "AppDelegate.h" | |
| #define sharedAppDelegate ((AppDelegate*)[[UIApplication sharedApplication] delegate]) | |
| #endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment