2020
11-06
11-06
详解iOS Method Swizzling使用陷阱
在阅读团队一项目源码时,发现MethodSwizzling的写法有些瑕疵。这篇文章主要就介绍iOSMethodSwizzling的正确写法应该是什么样的。下面是iOSMethodSwizzling的一种实现:+(void)load{Classclass=[selfclass];SELfromSelector=@selector(func);SELtoSelector=@selector(easeapi_func);MethodfromMethod=class_getInstanceMethod(class,fromSelector);MethodtoMethod=class_getInstanceMethod(clas...
继续阅读 >