1234567891011121314151617181920212223 |
- //
- // MTViewControllerProtocol.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #ifndef MTViewControllerProtocol_h
- #define MTViewControllerProtocol_h
- #import <Foundation/Foundation.h>
- @protocol MTViewProtocol;
- @protocol MTViewControllerProtocol <NSObject>
- @optional
- - (instancetype) initWithViewModel:(id) viewModel;
- - (void) mt_bindViewModel;
- - (void) mt_addSubviews;
- - (void) mt_layoutNavigation;
- @end
- #endif
|