1
0
réplica de https://github.com/Burrit0z/kai synced 2025-07-06 21:46:47 +00:00
Files
kai/KAIStackView.mm
2020-06-03 09:52:33 -04:00

21 líneas
462 B
Plaintext

#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