- Coffee Bar (3)
- Stable Cafe (piaf w/ bacon)
- Haus
- Philz
- Ritual
- Rogers
- Cafe Arlequin
| /* | |
| * System Versioning Preprocessor Macros | |
| */ | |
| #define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) | |
| #define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) | |
| #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) | |
| #define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) | |
| #define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) |
| #import <Foundation/Foundation.h> | |
| @interface SPInvocationGrabber : NSObject { | |
| id _object; | |
| NSInvocation *_invocation; | |
| int frameCount; | |
| char **frameStrings; | |
| BOOL backgroundAfterForward; | |
| BOOL onMainAfterForward; | |
| BOOL waitUntilDone; |