Last active
April 23, 2019 22:28
-
-
Save orkoden/6b595d136dbc7df76d97aa0ad05c41b3 to your computer and use it in GitHub Desktop.
Swizzle all UIViewController titles to fish emoji π
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IMP titleImp = imp_implementationWithBlock(^NSString *(__unsafe_unretained id foo){ | |
return @"π "; | |
}); | |
SEL titleSelector = NSSelectorFromString(@"title"); | |
Method existingTitle = class_getInstanceMethod([UIViewController class], | |
titleSelector); | |
method_setImplementation(existingTitle, | |
titleImp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment