iOS逆向 ---- Hook方法及原理OC篇
iOS开发
共 2566字,需浏览 6分钟
·
2022-10-25 05:13
作者丨奔跑的不将就
来源丨掘金
链接:
https://juejin.im/post/5ec0099f6fb9a0436006cc35
一、Hook简介
二、方法交换原理
1、方法交换
OBJC_EXPORT void
method_exchangeImplementations(Method _Nonnull m1, Method _Nonnull m2)
OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
2、替换方法
OBJC_EXPORT IMP _Nullable
class_replaceMethod(Class _Nullable cls, SEL _Nonnull name, IMP _Nonnull imp,
const char * _Nullable types)
OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
3、setIMP & getIMP
OBJC_EXPORT IMP _Nonnull
method_setImplementation(Method _Nonnull m, IMP _Nonnull imp)
OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
OBJC_EXPORT IMP _Nullable
class_getMethodImplementation(Class _Nullable cls, SEL _Nonnull name)
OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
1、Class 一个 objc_class 类型的结构体指针,用于说明对象是哪个类; 2、Method 一个 objc_method 类型的结构体指针,用于定义一个方法,在objc源码中定义如下:
3、SEL 可以发现在 Method 的定义中,也能看见SEL。我们看下在苹果官方文档中如何定义这种类型
4、IMP 同样在 Method 的定义中也能看到,在苹果官方文档的定义如下:
SEL: Method selectors are used to represent the name of a method at runtime. A method selector is a C string that has been registered (or “mapped“) with the Objective-C runtime.
IMP: This data type is a pointer to the start of the function that implements the method. This function uses standard C calling conventions as implemented for the current CPU architecture. The first argument is a pointer to self (that is, the memory for the particular instance of this class, or, for a class method, a pointer to the metaclass). The second argument is the method selector. The method arguments follow.
三、总结
-End-
最近有一些小伙伴,让我帮忙找一些 面试题 资料,于是我翻遍了收藏的 5T 资料后,汇总整理出来,可以说是程序员面试必备!所有资料都整理到网盘了,欢迎下载!
面试题
】即可获取评论