Browse Source

complications stuff

pull/1/head
Burrit0z 4 years ago
parent
commit
7c1ef78fdc
2 changed files with 14 additions and 1 deletions
  1. +9
    -1
      KAIBatteryStack.mm
  2. +5
    -0
      Kai.h

+ 9
- 1
KAIBatteryStack.mm View File

} }


}]; }];

if([self.superview.superview.superview respondsToSelector:@selector(fixComplicationsViewFrame)]) {
[(NCNotificationListView *)(self.superview.superview.superview) fixComplicationsViewFrame];
}
}); });


} }
-(void)addArrangedSubview:(UIView *)view { -(void)addArrangedSubview:(UIView *)view {
[super addArrangedSubview:view]; [super addArrangedSubview:view];
self.number = [self.subviews count]; self.number = [self.subviews count];
if([self.superview.superview.superview respondsToSelector:@selector(fixComplicationsViewFrame)]) {
[(NCNotificationListView *)(self.superview.superview.superview) fixComplicationsViewFrame];
}


[UIView animateWithDuration:0.3 animations:^{ [UIView animateWithDuration:0.3 animations:^{


-(void)removeArrangedSubview:(UIView *)view { -(void)removeArrangedSubview:(UIView *)view {
[super removeArrangedSubview:view]; [super removeArrangedSubview:view];
self.number = [self.subviews count]; self.number = [self.subviews count];
if([self.superview.superview.superview respondsToSelector:@selector(fixComplicationsViewFrame)]) {
[(NCNotificationListView *)(self.superview.superview.superview) fixComplicationsViewFrame];
}


[UIView animateWithDuration:0.3 animations:^{ [UIView animateWithDuration:0.3 animations:^{



+ 5
- 0
Kai.h View File

-(id)sf_udidString; -(id)sf_udidString;
-(id)_currentProduct; -(id)_currentProduct;
@end @end

@interface NCNotificationListView : UIView
-(void)fixComplicationsViewFrame;
@end

BOOL isUpdating = NO; BOOL isUpdating = NO;


//prefs //prefs

Loading…
Cancel
Save