1
0
şunun yansıması https://github.com/Burrit0z/kai eşitlendi 2025-07-04 00:56:47 +00:00
Files
kai/KAIStackView.mm

16 satır
346 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];
}
@end