From 69d756a6c926abb3cdbce7ed2443b2ff4db31519 Mon Sep 17 00:00:00 2001 From: Burrit0z Date: Fri, 22 May 2020 15:20:55 -0400 Subject: [PATCH] i commit too much lmaoo --- KAIBattery.mm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/KAIBattery.mm b/KAIBattery.mm index c6d53db..4ffcd5a 100644 --- a/KAIBattery.mm +++ b/KAIBattery.mm @@ -32,15 +32,17 @@ long long lastPercentage; if([devices count]!=0) { //NSLog(@"kai: info is good, will proceed"); + __block float ytwo = 0; + for(KAIBatteryCell *cell in self.subviews) { if([cell respondsToSelector:@selector(updateInfo)] && ![devices containsObject:cell.device]) { //to confirm is a cell and battery device does not exist dispatch_async(dispatch_get_main_queue(), ^{ [cell removeFromSuperview]; }); } else if([cell respondsToSelector:@selector(updateInfo)]) { - dispatch_async(dispatch_get_main_queue(), ^{ + cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight); [cell updateInfo]; - }); + ytwo+= bannerHeight + spacing; } } @@ -62,10 +64,11 @@ long long lastPercentage; } KAIBatteryCell *cell = [KAIBatteryCell cellForDeviceIfExists:device frameToCreateNew:CGRectMake(0, y, self.frame.size.width, bannerHeight)]; + cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight); if(cell) { cell.device = device; - cell.frame = cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight); //bro im like creating my own stack view + //cell.frame = cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight); //bro im like creating my own stack view //[cell updateInfo]; }