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.

17 lines
382B

  1. @interface CSTeachableMomentsContainerView { }
  2. @property (nonatomic,retain) UIView * controlCenterGrabberView;
  3. @end
  4. %hook UIStatusBar_Modern
  5. -(void)setAlpha:(CGFloat)arg1 {
  6. %orig(0.0); // makes status bar transparent on lock screen
  7. }
  8. %end
  9. %hook CSTeachableMomentsContainerView
  10. - (void)layoutSubviews {
  11. [self.controlCenterGrabberView setHidden:YES];
  12. return %orig;
  13. }
  14. %end