13 lines
380 B
Objective-C
13 lines
380 B
Objective-C
//
|
|
// AppDelegate.h
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#define WP_COLOR_WITH_HEX(HEX) [UIColor colorWithRed:((HEX >> 16) & 0xFF) / 255.0f green:((HEX >> 8) & 0xFF) / 255.0f blue:((HEX) & 0xFF) / 255.0f alpha:1.0f]
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) NSMutableArray *saveImages;
|
|
|
|
@end
|
|
|