Remove the lockscreen and home screen status bar.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
271B

  1. %hook UIStatusBar_Modern
  2. -(void)setAlpha:(CGFloat)arg1 {
  3. %orig(0.0); // makes status bar transparent on lock screen
  4. }
  5. %end
  6. %hook SBDashBoardTeachableMomentsContainerView
  7. -(void)_addControlCenterTutors {
  8. // Nothing here to prevent the cc grabber from showing
  9. }
  10. %end