Skip to content

Instantly share code, notes, and snippets.

@Mabdelwanis
Forked from coord-e/safemode.xm
Created November 30, 2023 22:11
Show Gist options
  • Save Mabdelwanis/f961c6a4aae9d1276ddef12b33ebe716 to your computer and use it in GitHub Desktop.
Save Mabdelwanis/f961c6a4aae9d1276ddef12b33ebe716 to your computer and use it in GitHub Desktop.
auto safemode
#define time 3600 //一時間
%hook SpringBoard
-(void)applicationDidFinishLaunching: (id)application {
%orig;
[[NSOperationQueue new] addOperationWithBlock:^{
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:time]];
NSString* string = @[@"Crash"][2];
}];
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment