Device battery indicators on your Lock Screen
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

11 Zeilen
413B

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