26 lines
510 B
Objective-C
26 lines
510 B
Objective-C
//
|
|
// MewMainHomePartyVC.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/12/20.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXPagingView/JXPagerView.h>
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MewMainHomePartyVC;
|
|
@protocol MewMainHomePartyVCDelegate <NSObject>
|
|
|
|
-(void)mew_RefreshSucceed:(MewMainHomePartyVC *)vc;
|
|
|
|
@end
|
|
|
|
@interface MewMainHomePartyVC : MvpViewController<JXPagerViewListViewDelegate>
|
|
- (void)headerRefresh;
|
|
@property(nonatomic,weak) id<MewMainHomePartyVCDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|