Files
yinmeng-ios/xplan-ios/Main/Home/View/Mew/MewHomeView/MewMainHomePartyVC.h
2023-12-21 18:42:16 +08:00

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