MTBaseView.m 516 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MTBaseView.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseView.h"
  8. @implementation MTBaseView
  9. - (instancetype)initWithFrame:(CGRect)frame{
  10. self = [super initWithFrame:frame];
  11. if (self) {
  12. [self bindViewModel];
  13. [self makeSubViews];
  14. }
  15. return self;
  16. }
  17. - (instancetype)initWithViewModel:(id)viewModel {
  18. self = [super init];
  19. if (self) {
  20. }
  21. return self;
  22. }
  23. - (void)bindViewModel{}
  24. -(void)makeSubViews{}
  25. @end