Device battery indicators on your Lock Screen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #import "KAIStackView.h"
-
- @implementation KAIStackView
-
- -(id)initWithFrame:(CGRect)arg1 {
- self = [super initWithFrame:arg1];
- self.translatesAutoresizingMaskIntoConstraints = NO;
- return self;
- }
-
- -(void)addSubview:(UIView *)arg1 {
- [super addSubview:arg1];
- [(UIScrollView *)self.superview setContentSize:self.frame.size];
- }
-
- -(void)layoutSubviews {
- [super layoutSubviews];
- [(KAIBatteryPlatter *)(self.superview) calculateHeight];
- }
-
- @end
|