zrcadlo
https://github.com/Burrit0z/kai
synchronizováno 2025-06-30 21:26:47 +00:00
17 řádky
650 B
Objective-C
17 řádky
650 B
Objective-C
@interface KAIStackView : UIStackView
|
|
@property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
|
|
@end
|
|
|
|
@interface KAIBatteryPlatter : UIScrollView <UIScrollViewDelegate>
|
|
@property (nonatomic, assign) NSInteger number;
|
|
@property (nonatomic, assign) NSInteger oldCountOfDevices;
|
|
@property (nonatomic, strong) NSLayoutConstraint *heightConstraint;
|
|
@property (nonatomic, strong) KAIStackView *stack;
|
|
@property (nonatomic, assign) BOOL isUpdating;
|
|
@property (nonatomic, assign) BOOL queued;
|
|
+(KAIBatteryPlatter *)sharedInstance;
|
|
-(instancetype)initWithFrame:(CGRect)arg1;
|
|
-(void)refreshForPrefs;
|
|
-(void)updateBattery;
|
|
-(void)calculateHeight;
|
|
@end |