mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-23 14:56:08 +08:00
14 lines
467 B
Objective-C
14 lines
467 B
Objective-C
// JRSwizzle.h semver:1.0
|
|
// Copyright (c) 2007-2011 Jonathan 'Wolf' Rentzsch: http://rentzsch.com
|
|
// Some rights reserved: http://opensource.org/licenses/MIT
|
|
// https://github.com/rentzsch/jrswizzle
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSObject (JRSwizzle)
|
|
|
|
+ (BOOL)jr_swizzleMethod:(SEL)origSel_ withMethod:(SEL)altSel_ error:(NSError**)error_;
|
|
+ (BOOL)jr_swizzleClassMethod:(SEL)origSel_ withClassMethod:(SEL)altSel_ error:(NSError**)error_;
|
|
|
|
@end
|