Device battery indicators on your Lock Screen
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

13 líneas
538B

  1. @interface KAIBatteryPlatter : UIScrollView <UIScrollViewDelegate>
  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)initWithFrame:(CGRect)arg1;
  10. -(void)refreshForPrefs;
  11. -(void)updateBattery;
  12. -(void)calculateHeight;
  13. @end