// // GHThemeManager.h // GameHelper // // Created by 青秀斌 on 16/12/29. // Copyright © 2016年 kylincc. All rights reserved. // #import typedef NS_ENUM(NSInteger, ThemeType) { ThemeType_Defalt, ThemeType_Night, }; #define GHThemeChangeNotification @"GHThemeChangeNotification" @interface GHThemeManager : NSObject @property (nonatomic, assign, readonly) ThemeType themeType; - (void)switchToTheme:(ThemeType)themeType; @end