1
0
şunun yansıması https://github.com/Burrit0z/kai eşitlendi 2025-07-04 02:26:48 +00:00

i commit too much lmaoo

Bu işleme şunda yer alıyor:
Burrit0z
2020-05-22 15:20:55 -04:00
ebeveyn 028d4a4846
işleme 69d756a6c9

Dosyayı Görüntüle

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