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.

KAIStackView.h 768B

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
12345678910111213141516171819
  1. @interface KAIStackView : UIStackView
  2. @property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
  3. @end
  4. @interface KAIBatteryPlatter : UIScrollView <UIScrollViewDelegate>
  5. @property (nonatomic, strong) UIView *stackHolder;
  6. @property (nonatomic, assign) NSInteger number;
  7. @property (nonatomic, assign) NSInteger oldCountOfDevices;
  8. @property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
  9. @property (nonatomic, strong) NSLayoutConstraint *widthConstraint;
  10. @property (nonatomic, strong) KAIStackView *stack;
  11. @property (nonatomic, assign) BOOL isUpdating;
  12. @property (nonatomic, assign) BOOL queued;
  13. +(KAIBatteryPlatter *)sharedInstance;
  14. -(instancetype)initWithFrame:(CGRect)arg1;
  15. -(void)refreshForPrefs;
  16. -(void)updateBattery;
  17. -(void)calculateHeight;
  18. @end