Skip to content

Instantly share code, notes, and snippets.

@LacertosusRepo
Last active May 1, 2019 23:59
Show Gist options
  • Save LacertosusRepo/43ef53fce0d1dbe38409c5cdfb6b4ee1 to your computer and use it in GitHub Desktop.
Save LacertosusRepo/43ef53fce0d1dbe38409c5cdfb6b4ee1 to your computer and use it in GitHub Desktop.
Hide the clock/subtitle on the lockscreen and notification center
@interface SBFLockScreenDateView : UIView
@property (assign,getter=isSubtitleHidden,nonatomic) BOOL subtitleHidden;
@end
%hook SBFLockScreenDateView
-(void)_updateLabels {
%orig;
//Hides just the subtitle
self.subtitleHidden = YES;
//Hides everything
self.hidden = YES;
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment