Device battery indicators on your Lock Screen
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12 lines
478B

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