Skip to content

Instantly share code, notes, and snippets.

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