BackButton.m 335 B

123456789101112131415161718192021222324
  1. //
  2. // BackButton.m
  3. // homy
  4. //
  5. // Created by 翟玉磊 on 2018/11/9.
  6. // Copyright © 2018 翟玉磊. All rights reserved.
  7. //
  8. #import "BackButton.h"
  9. @implementation BackButton
  10. #pragma mark - 布局子控件
  11. - (void)layoutSubviews
  12. {
  13. [super layoutSubviews];
  14. // 布局子控件
  15. self.imageView.f_x = 0;
  16. }
  17. @end