Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/YingMeng/DDBaseCompilation/MVP/View/MvpViewController.h
2023-12-12 15:35:10 +08:00

22 lines
313 B
Objective-C

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