Guest User

Untitled

a guest
Feb 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. self.alphaWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  2. self.alphaWindow.backgroundColor = [UIColor blackColor];
  3. self.alphaWindow.windowLevel = UIWindowLevelAlert+1;
  4. self.alphaWindow.hidden = NO;
  5. self.alphaWindow.userInteractionEnabled = NO;
  6. self.alphaWindow.rootViewController = [UIViewController new];
  7. self.alphaWindow.alpha = 1-NIGHT_MODE_BRIGHTNESS;
Add Comment
Please, Sign In to add comment