Skip to content

Instantly share code, notes, and snippets.

@izadgot
Created May 1, 2019 14:29
Show Gist options
  • Save izadgot/a6361b938fc02a152aa14c6aaf7a6f88 to your computer and use it in GitHub Desktop.
Save izadgot/a6361b938fc02a152aa14c6aaf7a6f88 to your computer and use it in GitHub Desktop.
example Tweak.xm file for iGoat
#import <PersonalPhotoStorageVC.h>
%hook PersonalPhotoStorageVC
// Hooking an instance method with no arguments.
- (void)viewDidLoad {
%orig;
self.theTextField.text = [self valueForKey:@"_pw"];
self.theTextField.textColor = [UIColor redColor];
}
// Always make sure you clean up after yourself; Not doing so could have grave consequences!
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment