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.

KAIBattery.h 365B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910
  1. @interface KAIBattery : UIView
  2. @property (nonatomic, strong) NSMutableArray *displayingDevices;
  3. @property (nonatomic, assign) NSInteger number;
  4. @property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
  5. @property (nonatomic, assign) BOOL isUpdating;
  6. +(KAIBattery *)sharedInstance;
  7. -(instancetype)init;
  8. -(void)removeAllAndRefresh;
  9. -(void)updateBattery;
  10. @end