Remove the lockscreen and home screen status bar.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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