21 lines
360 B
Objective-C
21 lines
360 B
Objective-C
//
|
|
// XPHomeHappyViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/2/25.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXPagingView/JXPagerView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPHomeHappyViewController : MvpViewController<JXPagerViewListViewDelegate>
|
|
|
|
/// 给首页调用定时刷新数据
|
|
- (void)refreshData;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|