码迷,mamicode.com
首页 > 其他好文 > 详细

拦截方法并替换成自己的方法

时间:2016-08-31 00:33:13      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

   #import <objc/runtime.h>

    

    

    Method method1 = class_getInstanceMethod([self class],@selector(didAddSubview:));

    

    Method method2 = class_getInstanceMethod([self class], @selector(didModifyRange:));

    method_exchangeImplementations(method1, method2);

拦截方法并替换成自己的方法

标签:

原文地址:http://www.cnblogs.com/paocai2015/p/5823916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!