Device battery indicators on your Lock Screen
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 lines
468B

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