// // MvpViewController.h // xplan-ios // // Created by zu on 2021/8/31. // #import "BaseViewController.h" #import "BaseMvpPresenter.h" NS_ASSUME_NONNULL_BEGIN @interface MvpViewController : BaseViewController @property (nonatomic, strong) __kindof T presenter; - (__kindof T)createPresenter; @end NS_ASSUME_NONNULL_END