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 843B

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