Skip to content

Instantly share code, notes, and snippets.

@corosukeK
Created May 2, 2012 18:32
Show Gist options
  • Save corosukeK/2579021 to your computer and use it in GitHub Desktop.
Save corosukeK/2579021 to your computer and use it in GitHub Desktop.
BeforeSwizzling
#import "SwizzlingTest.h"
#import </usr/include/objc/objc-class.h>
@interface Swizzlingee : NSObject
- (NSString *) hoge;
- (NSString *) piyo;
@end
@implementation Swizzlingee
- (void)hoge
{
NSLog(@"hoge");
}
- (void)piyo
{
NSLog(@"piyo");
[self piyo];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment