Last active
May 13, 2024 19:46
-
-
Save jarrodnorwell/7868801ca0616271e5995bf97134d95e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%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