Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/YingMeng/DDBaseCompilation/MVP/View/MvpViewController.h

22 lines
313 B
C
Raw Normal View History

2023-12-12 15:35:10 +08:00
//
// 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