Skip to content

Instantly share code, notes, and snippets.

@hcrub
Created November 7, 2013 16:57
Show Gist options
  • Save hcrub/7357929 to your computer and use it in GitHub Desktop.
Save hcrub/7357929 to your computer and use it in GitHub Desktop.
Example of Objective-C's Runtime method_exchangeImplementations for method swizzling
+ (void)load
{
Method original, swizzled;
original = class_getInstanceMethod(self, @selector(original_method));
swizzled = class_getInstanceMethod(self, @selector(swizzled_method));
method_exchangeImplementations(original, swizzled);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment