Created
May 7, 2019 10:51
-
-
Save nderkach/ed71342119412f6959e1bf98473b7407 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIWindow *window = [[UIWindow alloc] initWithFrame:rootWindow.bounds]; | |
window.hidden = NO; | |
window.windowLevel = UIWindowLevel_Background; | |
window.opaque = YES; | |
window.backgroundColor = UIColor.ows_materialBlueColor; | |
ScreenLockViewController *viewController = [ScreenLockViewController new]; | |
viewController.delegate = self; | |
window.rootViewController = viewController; | |
self.screenBlockingWindow = window; | |
self.screenBlockingViewController = viewController; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment