MTViewControllerProtocol.h 461 B

1234567891011121314151617181920212223
  1. //
  2. // MTViewControllerProtocol.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #ifndef MTViewControllerProtocol_h
  8. #define MTViewControllerProtocol_h
  9. #import <Foundation/Foundation.h>
  10. @protocol MTViewProtocol;
  11. @protocol MTViewControllerProtocol <NSObject>
  12. @optional
  13. - (instancetype) initWithViewModel:(id) viewModel;
  14. - (void) mt_bindViewModel;
  15. - (void) mt_addSubviews;
  16. - (void) mt_layoutNavigation;
  17. @end
  18. #endif