MTBaseView.h 314 B

12345678910111213141516171819
  1. //
  2. // MTBaseView.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MTBaseView : UIView
  10. - (instancetype)initWithViewModel:(id)viewModel;
  11. -(void)bindViewModel;
  12. -(void)makeSubViews;
  13. @end
  14. NS_ASSUME_NONNULL_END