Advertisement
Guest User

I mean, okay?

a guest
May 6th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %hook SBPowerDownController
  2.  
  3. -(void)orderFront{
  4.    
  5.     UIViewController * vc = [[UIViewController alloc] init];
  6.    
  7.     UIView *dimRec = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  8.     [dimRec setBackgroundColor:[UIColor blackColor]];
  9.    
  10.     [vc.view addSubview:dimRec];
  11.     [self presentViewController:vc animated:YES completion:nil];
  12.  
  13.  
  14. }
  15. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement