Skip to content

Instantly share code, notes, and snippets.

@alessaba
Forked from steventroughtonsmith/gist:6763213
Created October 1, 2013 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alessaba/6777655 to your computer and use it in GitHub Desktop.
Save alessaba/6777655 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