20 lines
390 B
Objective-C
20 lines
390 B
Objective-C
//
|
|
// XPFindNewFriendViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/6.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXPagingView/JXPagerView.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPFindNewFriendViewController : MvpViewController<JXPagerViewListViewDelegate>
|
|
|
|
/// 给首页调用定时刷新数据
|
|
- (void)refreshData:(nullable NSString *)gender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|