Device battery indicators on your Lock Screen
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
413B

  1. @interface KAIBatteryStack : UIStackView
  2. @property (nonatomic, assign) NSInteger number;
  3. @property (nonatomic, assign) NSInteger oldCountOfDevices;
  4. @property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
  5. @property (nonatomic, assign) BOOL isUpdating;
  6. @property (nonatomic, assign) BOOL queued;
  7. +(KAIBatteryStack *)sharedInstance;
  8. -(instancetype)init;
  9. -(void)refreshForPrefs;
  10. -(void)updateBattery;
  11. @end