VisionWallPaperOffline-8-19/HD wallpaper/AppDelegate.h
2024-07-03 14:33:32 +08:00

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