1
0
mirror of https://github.com/Burrit0z/kai synced 2025-07-04 06:46:47 +00:00

i commit too much lmaoo

This commit is contained in:
Burrit0z
2020-05-22 15:20:55 -04:00
parent 028d4a4846
commit 69d756a6c9

View File

@ -32,15 +32,17 @@ long long lastPercentage;
if([devices count]!=0) { if([devices count]!=0) {
//NSLog(@"kai: info is good, will proceed"); //NSLog(@"kai: info is good, will proceed");
__block float ytwo = 0;
for(KAIBatteryCell *cell in self.subviews) { 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 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(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[cell removeFromSuperview]; [cell removeFromSuperview];
}); });
} else if([cell respondsToSelector:@selector(updateInfo)]) { } else if([cell respondsToSelector:@selector(updateInfo)]) {
dispatch_async(dispatch_get_main_queue(), ^{ cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight);
[cell updateInfo]; [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)]; 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) { if(cell) {
cell.device = device; 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]; //[cell updateInfo];
} }