17 lines
479 B
Objective-C
17 lines
479 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(nonatomic,strong)NSMutableArray *data2;
|
|
@property(nonatomic,strong)NSString *skyValue;
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) NSMutableArray *saveImages;
|
|
|
|
|
|
@end
|
|
|