Skip to content

Instantly share code, notes, and snippets.

@jarrodnorwell
Last active May 13, 2024 19:46
Show Gist options
  • Save jarrodnorwell/7868801ca0616271e5995bf97134d95e to your computer and use it in GitHub Desktop.
Save jarrodnorwell/7868801ca0616271e5995bf97134d95e to your computer and use it in GitHub Desktop.
%hook SBFLockScreenDateView
-(NSString *) customTimeNumberingSystem {
return @"<STRING HERE>";
}
-(void) setCustomTimeNumberingSystem:(NSString *)arg1 {
%orig(@"<STRING HERE>");
}
-(id) initWithFrame:(CGRect)arg1 {
id orig = %orig;
// objectForKey may need to be used instead?
[(NSString *)[orig valueForKey:@"_customTimeNumberingSystem"]] = @"<STRING HERE>";
return orig;
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment