31 lines
1.0 KiB
Objective-C
Executable File
31 lines
1.0 KiB
Objective-C
Executable File
//
|
|
// Example
|
|
// man
|
|
//
|
|
// Created by man 11/11/2018.
|
|
// Copyright © 2020 man. All rights reserved.
|
|
//
|
|
|
|
#import <objc/runtime.h>
|
|
|
|
/**
|
|
* Replaces the selector's associated method implementation with the
|
|
* given implementation (or adds it, if there was no existing one).
|
|
*
|
|
* @param selector The selector entry in the dispatch table.
|
|
* @param newImpl The implementation that will be associated with
|
|
* the given selector.
|
|
* @param affectedClass The class whose dispatch table will be altered.
|
|
* @param isClassMethod Set to YES if the selector denotes a class
|
|
* method, or NO if it is an instance method.
|
|
* @return The previous implementation associated with
|
|
* the swizzled selector. You should store the
|
|
* implementation and call it when overwriting
|
|
* the selector.
|
|
*/
|
|
__attribute__((warn_unused_result)) IMP replaceMethod(SEL selector, IMP newImpl, Class affectedClass, BOOL isClassMethod);
|
|
|
|
|
|
|
|
|