21 lines
386 B
Objective-C
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
|