Skip to content

Instantly share code, notes, and snippets.

View aydenp's full-sized avatar

Ayden Panhuyzen aydenp

View GitHub Profile
@aydenp
aydenp / OBWelcomeControllerExample.m
Last active May 1, 2021 12:55 — forked from chrisharper22/OBWelcomeControllerExample.m
Creating a custom OBWelcomeController in iOS 13
//
// How to use an OBWelcomeController in your project.
//
// Simalary (Chris)
//
// All the important interfaces
@interface OBButtonTray : UIView
- (void)addButton:(UIButton *)button;
@aydenp
aydenp / UIBackgroundStyle-Test.entitlements
Last active September 19, 2021 21:46 — forked from AppleBetas/gist:4ddf91c8ead4b2a87a71bcd52eab258b
Non-opaque application windows in iOS 7, with optional blur. Shows the user's wallpaper under the app, with Parallax if supported.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.springboard.appbackgroundstyle</key>
<true/>
</dict>
</plist>