Files
simject/simjectExampleTweak/simjectExampleTweak.xm
T
2016-06-19 11:46:43 -04:00

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