Skip to content

Instantly share code, notes, and snippets.

@domix
Forked from steventroughtonsmith/gist:6763213
Created October 3, 2013 03:59
Show Gist options
  • Save domix/6804743 to your computer and use it in GitHub Desktop.
Save domix/6804743 to your computer and use it in GitHub Desktop.
typedef enum _UIBackgroundStyle {
UIBackgroundStyleDefault,
UIBackgroundStyleTransparent,
UIBackgroundStyleLightBlur,
UIBackgroundStyleDarkBlur,
UIBackgroundStyleDarkTranslucent
} UIBackgroundStyle;
@interface UIApplication (UIBackgroundStyle)
-(void)_setBackgroundStyle:(UIBackgroundStyle)style;
@end
[application _setBackgroundStyle:UIBackgroundStyleDarkBlur];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment