Device battery indicators on your Lock Screen
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

KAIStackView.mm 462B

il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021
  1. #import "KAIStackView.h"
  2. @implementation KAIStackView
  3. -(id)initWithFrame:(CGRect)arg1 {
  4. self = [super initWithFrame:arg1];
  5. self.translatesAutoresizingMaskIntoConstraints = NO;
  6. return self;
  7. }
  8. -(void)addSubview:(UIView *)arg1 {
  9. [super addSubview:arg1];
  10. [(UIScrollView *)self.superview setContentSize:self.frame.size];
  11. }
  12. -(void)layoutSubviews {
  13. [super layoutSubviews];
  14. [(KAIBatteryPlatter *)(self.superview) calculateHeight];
  15. }
  16. @end