UIApplication+Private.h 368 B

123456789101112131415161718
  1. @class UIStatusBar;
  2. typedef enum {
  3. UIBackgroundStyleDefault,
  4. UIBackgroundStyleTransparent,
  5. UIBackgroundStyleLightBlur,
  6. UIBackgroundStyleDarkBlur,
  7. UIBackgroundStyleDarkTranslucent
  8. } UIBackgroundStyle;
  9. @interface UIApplication (Private)
  10. @property (nonatomic, retain) UIStatusBar *statusBar;
  11. - (void)_setBackgroundStyle:(UIBackgroundStyle)backgroundStyle;
  12. @end