Device battery indicators on your Lock Screen
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
346B

  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. @end