Skip to content

Instantly share code, notes, and snippets.

@LacertosusRepo
Created May 6, 2019 06:18
Show Gist options
  • Save LacertosusRepo/82a190bbb634a38bcf2ea96ff11b83d0 to your computer and use it in GitHub Desktop.
Save LacertosusRepo/82a190bbb634a38bcf2ea96ff11b83d0 to your computer and use it in GitHub Desktop.
@interface UITableViewLabel : UILabel
@end
%hook SettingsTableViewCell
-(id)textLabel {
UITableViewLabel *label = %orig;
if([label.text isEqualToString:@"Your Account"]) {
label.text = @"Custom Text Here";
}
return label;
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment