Remove the lockscreen and home screen status bar.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

13 linhas
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