Files
yinmeng-ios/xplan-ios/Main/MVP/View/MvpViewController.h
2021-09-06 18:51:44 +08:00

22 lines
349 B
Objective-C

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