Files
yinmeng-ios-store/yinmeng-ios/yinmeng-ios/Base/MVP/View/MewMvpViewController.h
2023-12-06 15:09:18 +08:00

21 lines
386 B
Objective-C

//
// MewMvpViewController.h
// yinmeng-ios
//
// Created by duoban on 2023/12/6.
//
#import "MewBaseViewController.h"
#import "MewBaseMvpPresenter.h"
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MewMvpViewController<T> : MewBaseViewController
@property (nonatomic, strong) __kindof T presenter;
- (__kindof T)createPresenter;
@end
NS_ASSUME_NONNULL_END