Closed zhfwch closed 4 years ago
NSObject+PLeakTrack.m @selector(getAllPropertyNames:) On line 129, class_copyPropertyList is called, but it is not released at the end.
@selector(getAllPropertyNames:)
class_copyPropertyList
You can free(properties) at the end.
free(properties)
NSObject+PLeakTrack.m
@selector(getAllPropertyNames:)
On line 129,class_copyPropertyList
is called, but it is not released at the end.