mirror of
https://github.com/Burrit0z/kai
synced 2025-07-01 10:56:47 +00:00
bro not trash i swear
This commit is contained in:
@ -11,6 +11,7 @@ KAIBattery *instance;
|
||||
if (self) {
|
||||
self.displayingDevices = [[NSMutableArray alloc] init];
|
||||
[self updateBattery];
|
||||
self.clipsToBounds = YES;
|
||||
self.userInteractionEnabled = NO;
|
||||
}
|
||||
return self;
|
||||
@ -32,13 +33,17 @@ long long lastPercentage;
|
||||
if([devices count]!=0) {
|
||||
//NSLog(@"kai: info is good, will proceed");
|
||||
|
||||
__block float ytwo = 0;
|
||||
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(), ^{
|
||||
//dispatch_async(dispatch_get_main_queue(), ^{
|
||||
[UIView animateWithDuration:0.2 animations:^{
|
||||
cell.alpha = 0;
|
||||
} completion:^(BOOL finished){
|
||||
[cell removeFromSuperview];
|
||||
});
|
||||
}];
|
||||
//});
|
||||
} else if([cell respondsToSelector:@selector(updateInfo)]) {
|
||||
cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight);
|
||||
[cell updateInfo];
|
||||
@ -75,16 +80,22 @@ long long lastPercentage;
|
||||
if(shouldAdd && [deviceName length]!=0) {
|
||||
if(![self.subviews containsObject:cell]) {
|
||||
cell.frame = CGRectMake(0, y, self.frame.size.width, bannerHeight);
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
cell.alpha = 0;
|
||||
[self addSubview:cell];
|
||||
});
|
||||
[UIView animateWithDuration:0.3 animations:^{
|
||||
cell.alpha = 1;
|
||||
}];
|
||||
}
|
||||
y+=bannerHeight + spacing;
|
||||
|
||||
} else if(!shouldAdd) {
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
//dispatch_async(dispatch_get_main_queue(), ^{
|
||||
[UIView animateWithDuration:0.2 animations:^{
|
||||
cell.alpha = 0;
|
||||
} completion:^(BOOL finished){
|
||||
[cell removeFromSuperview];
|
||||
});
|
||||
}];
|
||||
//});
|
||||
}
|
||||
}
|
||||
//[self.heightAnchor constraintEqualToConstant:(self.number * 85)].active = YES;
|
||||
@ -93,7 +104,8 @@ long long lastPercentage;
|
||||
}
|
||||
self.isUpdating = NO;
|
||||
//NSLog(@"kai: finished update");
|
||||
[(CSAdjunctListView *)self.superview.superview KaiUpdate];
|
||||
//[(CSAdjunctListView *)self.superview.superview KaiUpdate];
|
||||
[(CSAdjunctListView *)self.superview.superview performSelector:@selector(KaiUpdate) withObject:(CSAdjunctListView *)self.superview.superview afterDelay:0.2];
|
||||
}
|
||||
});
|
||||
}
|
||||
|
1
Kai.xm
1
Kai.xm
@ -48,6 +48,7 @@
|
||||
%new
|
||||
-(void)KaiUpdate {
|
||||
KAIBattery *battery = [KAIBattery sharedInstance];
|
||||
battery.number = [battery.subviews count];
|
||||
|
||||
[UIView animateWithDuration:0.3 animations:^{
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
Package: com.burritoz.kai
|
||||
Name: Kai
|
||||
Version: 0.1.5~alpha
|
||||
Version: 0.2.0~alpha
|
||||
Architecture: iphoneos-arm
|
||||
Description: Show charging banners on your lock screen!
|
||||
Maintainer: burrit0z
|
||||
|
Reference in New Issue
Block a user