Skip to content

Instantly share code, notes, and snippets.

View fallenpanda1's full-sized avatar

Allen fallenpanda1

View GitHub Profile
@fallenpanda1
fallenpanda1 / NSObject_Swizzle.h
Created February 9, 2016 00:07 — forked from rudyjahchan/NSObject_Swizzle.h
Monkey-Patching iOS with Objective-C Categories Part III: Swizzling
#import <Foundation/Foundation.h>
@interface NSObject (Swizzle)
+ (void)swizzleInstanceSelector:(SEL)originalSelector
withNewSelector:(SEL)newSelector;
@end