如果要重写objetive-c framework或.lib中Method,该怎么办?
首先,让我们先了解Objective-C Runtime中methods是什么:methods其实是个struct,定义如下:
从字面上 method_name 就不用解释了。method_types是通过type encodings返回的c-string类型的参数。method_imp是个函数指针,指向实际要执行的函数。(其实我们就是要通过改变IMP指针来重写系统函数)。
1.通过method_exchangeImplementations(Method m1,Method m2);
Method class_getClassMethod(Class aClass, SEL aSelector);
Method class_getInstanceMethod(Class aClass, SEL aSelector);来重写
这种方式就是改变要执行函数中IMP指针。清单1-1:
控制台打印:
2016-01-21 16:34:59.942 iCarouselTest[6834:141217] swizzleMethod
2016-01-21 16:34:59.942 iCarouselTest[6834:141217] orginMethod
用这个method_exchangeImplementations函数有缺点:如果有个类里面的函数与之前的swizzleMethod函数重名后,这是就起不到作用了:案例如下:
-(void)swizzleMethod{
[self swizzleMethod];
}
2016-01-21 16:49:15.263 iCarouselTest[6881:148369] swizzleMethod
2016-01-21 16:49:15.263 iCarouselTest[6881:148369] orginMethod
2016-01-21 16:49:15.263 iCarouselTest[6881:148369] orginMethod
这时我们可以通过第二种方式来决解。
2.之前我提过method_imp函数指针作用。这时可以通过method_setImplementation(Method m,IMP imp)和创建c语言函数来决解这个问题。
清单1-2:
这个方式就可以不必再创建新的swizzleMethod函数。直接使用原来orginalMethod,就可以实现重写函数功能。
网友评论