iOS内存泄露统计

1、Value stored to 'xxx' during its initialization is never read // 对象声明之后根本就没有使用 只有赋值

2、Value stored to 'xxx' is never read // 对象声明之后根本就没有使用 只有赋值

3、function call argument is an uninitialized value  // 所调用的方法没有初始化值

4、The 'viewWillAppear:' instance method in UIViewController subclass 'xxx' is missing a [super viewWillAppear:] call // 调用此类方法时需实现父类方法

5、Argument to 'NSMutableArray' method 'addObject:' cannot be nil // 被添加的对象不能为nil

原文地址:https://www.cnblogs.com/qq744890760/p/5102716.html