瀏覽代碼

complications stuff

pull/1/head
Burrit0z 4 年之前
父節點
當前提交
7c1ef78fdc
共有 2 個檔案被更改,包括 14 行新增1 行删除
  1. +9
    -1
      KAIBatteryStack.mm
  2. +5
    -0
      Kai.h

+ 9
- 1
KAIBatteryStack.mm 查看文件

@@ -125,7 +125,9 @@ long long lastPercentage;
}

}];

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

}
@@ -133,6 +135,9 @@ long long lastPercentage;
-(void)addArrangedSubview:(UIView *)view {
[super addArrangedSubview:view];
self.number = [self.subviews count];
if([self.superview.superview.superview respondsToSelector:@selector(fixComplicationsViewFrame)]) {
[(NCNotificationListView *)(self.superview.superview.superview) fixComplicationsViewFrame];
}

[UIView animateWithDuration:0.3 animations:^{

@@ -173,6 +178,9 @@ long long lastPercentage;
-(void)removeArrangedSubview:(UIView *)view {
[super removeArrangedSubview:view];
self.number = [self.subviews count];
if([self.superview.superview.superview respondsToSelector:@selector(fixComplicationsViewFrame)]) {
[(NCNotificationListView *)(self.superview.superview.superview) fixComplicationsViewFrame];
}

[UIView animateWithDuration:0.3 animations:^{


+ 5
- 0
Kai.h 查看文件

@@ -30,6 +30,11 @@
-(id)sf_udidString;
-(id)_currentProduct;
@end

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

BOOL isUpdating = NO;

//prefs

Loading…
取消
儲存