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
| // | |
| // FileFunctionLevelFormatter.h | |
| // | |
| // Created by Julien Grimault on 23/1/12. | |
| // Copyright (c) 2012 Julien Grimault. All rights reserved. | |
| // | |
| #import "DDLog.h" | |
| @interface FileFunctionLevelFormatter : NSObject <DDLogFormatter> |
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
| #ifndef __has_feature | |
| #define __has_feature(x) 0 | |
| #endif | |
| #ifndef __has_extension | |
| #define __has_extension __has_feature // Compatibility with pre-3.0 compilers. | |
| #endif | |
| #if __has_feature(objc_arc) && __clang_major__ >= 3 | |
| #define II_ARC_ENABLED 1 | |
| #endif // __has_feature(objc_arc) |
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
| BOOL gIsTransitionAvailable = YES; | |
| + (void)presentInModalViewController:(UIViewController *)aViewController animated:(BOOL)aAnimated | |
| { | |
| if (bIOS5) // iOS5인 경우 | |
| { | |
| if (gIsTransitionAvailable) | |
| { | |
| gIsTransitionAvailable = NO; |