runtime中的class_copyMethodList能获取对应类所有方法。它导致内存泄漏的原因是,这class_copyMethodList函数是C层的,没有OC的自动指针管理,需要手动free。
同理,runtime中获取类所有属性的class_copyIvarList的使用也是需要手动释放。
runtime中的class_copyMethodList能获取对应类所有方法。它导致内存泄漏的原因是,这class_copyMethodList函数是C层的,没有OC的自动指针管理,需要手动free。
同理,runtime中获取类所有属性的class_copyIvarList的使用也是需要手动释放。
本文标题:ios-runtime中class_copyMethodList
本文链接:https://www.haomeiwen.com/subject/nxybyctx.html
网友评论