12345678910111213141516171819 |
- //
- // MTBaseView.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MTBaseView : UIView
- - (instancetype)initWithViewModel:(id)viewModel;
- -(void)bindViewModel;
- -(void)makeSubViews;
- @end
- NS_ASSUME_NONNULL_END
|