Procházet zdrojové kódy

i commit too much lmaoo

pull/1/head
Burrit0z před 4 roky
rodič
revize
69d756a6c9
1 změnil soubory, kde provedl 6 přidání a 3 odebrání
  1. +6
    -3
      KAIBattery.mm

+ 6
- 3
KAIBattery.mm Zobrazit soubor

@@ -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];
}


Načítá se…
Zrušit
Uložit