mirror of
https://github.com/akemin-dayo/simject.git
synced 2025-11-01 08:55:00 +00:00
14 lines
342 B
Plaintext
14 lines
342 B
Plaintext
#import <UIKit/UIKit.h>
|
|
|
|
%hook SpringBoard
|
|
-(void) applicationDidFinishLaunching:(id)arg {
|
|
%orig(arg);
|
|
UIAlertView *lookWhatWorks = [[UIAlertView alloc] initWithTitle:@"simject Example Tweak"
|
|
message:@"It works! (ノ´ヮ´)ノ*:・゚✧"
|
|
delegate:self
|
|
cancelButtonTitle:@"OK"
|
|
otherButtonTitles:nil];
|
|
[lookWhatWorks show];
|
|
}
|
|
%end
|