Skip to content

Instantly share code, notes, and snippets.

@AppleBetas
AppleBetas / gist:4ddf91c8ead4b2a87a71bcd52eab258b
Last active December 24, 2019 00:03 — forked from steventroughtonsmith/gist:6763213
Non-opaque application windows in iOS 7, with optional blur. Shows the user's wallpaper under the app, with Parallax if supported.
typedef NS_ENUM(NSUInteger, UIBackgroundStyle) {
UIBackgroundStyleDefault,
UIBackgroundStyleTransparent,
UIBackgroundStyleLightBlur,
UIBackgroundStyleDarkBlur,
UIBackgroundStyleDarkTranslucent,
UIBackgroundStyleExtraDarkBlur,
UIBackgroundStyleBlur
};