23 lines
415 B
Objective-C
23 lines
415 B
Objective-C
//
|
|
// XPHomeLivePageViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/18.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXPagingView/JXPagerView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPHomeLivePageViewController : MvpViewController<JXPagerViewListViewDelegate>
|
|
|
|
///模块的 ID
|
|
@property (nonatomic,copy) NSString *tabId;
|
|
|
|
- (void)configLiveRoomList:(NSArray *)list;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|