Files
real-e-party-iOS/YuMi/Structure/MVP/View/MvpViewController.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

32 lines
622 B
Objective-C

//
// MvpViewController.h
// YUMI
//
// Created by admin on 2023/3/9.
//
#import "BaseViewController.h"
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
typedef void(^HeaderRefreshComplete)(void);
@interface MvpViewController<T> : BaseViewController
@property (nonatomic, strong) __kindof T presenter;
- (__kindof T)createPresenter;
- (void)setupTopTheme;
- (void)setupCustomNavigationBar:(void(^)(void))backAction title:(NSString *)title titleColor:(UIColor *)color;
- (void)setupCustonNavigationRightButtons:(NSArray <UIButton *>*)array sizes:(NSArray <NSValue *> *)sizes;
@end
NS_ASSUME_NONNULL_END