Device battery indicators on your Lock Screen
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #import "KAIStackView.h"
-
- @implementation KAIStackView
-
- -(id)initWithFrame:(CGRect)arg1 {
- self = [super initWithFrame:arg1];
- self.translatesAutoresizingMaskIntoConstraints = NO;
- return self;
- }
-
- -(void)addSubview:(UIView *)view {
- [super addSubview:view];
- [(UIScrollView *)self.superview.superview setContentSize:self.frame.size];
-
- if(textColor==0 && [view respondsToSelector:@selector(updateInfo)]) {
- KAIBatteryCell *cell = (KAIBatteryCell *)view;
- if(@available(iOS 12.0, *)) {
- if(self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark) {
- [cell.label setTextColor:[UIColor whiteColor]];
- [cell.percentLabel setTextColor:[UIColor whiteColor]];
- } else if(self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleLight) {
- [cell.label setTextColor:[UIColor blackColor]];
- [cell.percentLabel setTextColor:[UIColor blackColor]];
- }
- }
- }
- }
-
- -(void)layoutSubviews {
- [super layoutSubviews];
- [(KAIBatteryPlatter *)(self.superview.superview) calculateHeight];
- }
-
- @end
|