TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2015 |
Maintained by Oliver Letterer.
SPLWindow is a UIWindow subclass with the following features:
SPLWindow uses private APIs for screen recording, so make sure that this doesn't ship in your AppStore version.
pod 'SPLWindow', '~> 1.0'
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// !!! Make sure this doesn't ship in production
self.window = [[SPLWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.rageShakeEnabled = YES;
self.window.highlightsTouchesDuringAirPlayMirroring = YES;
self.window.highlightsTouchesDuringScreenRecording = YES;
return YES;
}
Oliver Letterer
SPLWindow is available under the MIT license. See the LICENSE file for more information.