@@ -89,6 +89,7 @@ long long lastPercentage; | |||
//Panik | |||
} | |||
} | |||
[KAIBatteryCell resetArray]; | |||
//self.displayingDevices = [[NSMutableArray alloc] init]; | |||
@@ -37,4 +37,5 @@ | |||
-(instancetype)initWithFrame:(CGRect)arg1 device:(BCBatteryDevice *)device; | |||
-(void)updateInfo; | |||
+(instancetype)cellForDeviceIfExists:(BCBatteryDevice *)device frameToCreateNew:(CGRect)arg2; | |||
+(void)resetArray; | |||
@end |
@@ -164,8 +164,8 @@ NSMutableArray *deviceInstances = [[NSMutableArray alloc] init]; | |||
//return deviceInstances; | |||
} | |||
+(id)array { | |||
return deviceInstances; | |||
+(void)resetArray { | |||
deviceInstances = [[NSMutableArray alloc] init]; | |||
} | |||
@end |