ios-runtime中class_copyMethodList
2019-09-20 本文已影响0人
简鱼7819
runtime中的class_copyMethodList能获取对应类所有方法。它导致内存泄漏的原因是,这class_copyMethodList函数是C层的,没有OC的自动指针管理,需要手动free。
同理,runtime中获取类所有属性的class_copyIvarList的使用也是需要手动释放。
runtime中的class_copyMethodList能获取对应类所有方法。它导致内存泄漏的原因是,这class_copyMethodList函数是C层的,没有OC的自动指针管理,需要手动free。
同理,runtime中获取类所有属性的class_copyIvarList的使用也是需要手动释放。