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

22 lines
350 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